W Ruby, jak wywołać metodę klasową z jednej z instancji tej klasy? Powiedz, że mam
class Truck
def self.default_make
# Class method.
"mac"
end
def initialize
# Instance method.
Truck.default_make # gets the default via the class's method.
# But: I wish to avoid mentioning Truck. Seems I'm repeating myself.
end
end
linia Truck.default_make
pobiera wartość domyślną. Ale czy można to powiedzieć bez wspominania Truck
? Wygląda na to, że powinno być.