1. 程式人生 > >Python類方法,靜態方法

Python類方法,靜態方法

通過 add 訪問 實例變量 clas style div def code

class Student:
    company = LOL
    @classmethod
    def say_company(cls):
        print(cls.company)

Student.say_company()
與類方法界限不清晰,可以訪問類,只是不通過CLS


class
Student: company = LOL @staticmethod def add(a,b): print(Student.company) print("{0}+{1}={2}".format(a,b,a+b)) Student.add(
1,2)

兩種方法多不能訪問實例變量。

Python類方法,靜態方法