Ruby에서 해당 클래스의 인스턴스 중 하나에서 클래스 메소드를 어떻게 호출합니까? 내가 가지고 있다고
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
라인 Truck.default_make
은 기본값을 검색합니다. 그러나 언급하지 않고 이것을 말하는 방법이 Truck
있습니까? 있어야 할 것 같습니다.