8.14. Definiowanie metod abstrakcyjnych

Problem

Chcemy zdefiniować w danej klasie metodę, pozostawiając jednak jej implementację subklasom.

Rozwiązanie

W ciele metody należy wygenerować wyjątek NotImplementedError:

class Figura2D
  def pole
    raise NotImplementedError.
      new("#{self.class.name}#pole jest metodą abstrakcyjną.")
  end
end


Figura2D.new.area
# NotImplementedError: Figura2D#pole jest metodą abstrakcyjną.

Subklasa może przedefiniować metodę abstrakcyjną pod kątem określonej funkcjonalności:

class Kwadrat < Figura2D
  def initialize(rozmiar)
    @rozmiar = rozmiar
  end

  def pole
    @rozmiar ** 2
  end
end

Kwadrat.new(10).pole                       # => 100

Dyskusja

W języku Ruby nie istnieje pojęcie metody abstrakcyjnej w znaczeniu takim jak w C++ czy Javie, ...

Get Ruby. Receptury now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.