在Ruby中,你可以這樣做:如何在python中創建類方法?
class A
def self.a
'A.a'
end
end
puts A.a #-> A.a
這怎麼能在Python來完成。我需要調用一個類的方法,而不用在類的一個實例上調用它。當我嘗試這樣做,我得到這個錯誤:
unbound method METHOD must be called with CLASS instance as first argument (got nothing instead)
這是我的嘗試:
class A
def a():
return 'A.a'
print A.a()
不2.X工作 – 2010-11-06 13:49:35