为什么我使用@classmethod而不是普通的实例方法

时间:2018-08-06 14:55:44

标签: python class-method

我观看了一个YouTube视频,解释了@classmethods,实例方法和@staticmethods。我了解如何使用它们。我只是不明白什么时候使用它们,为什么。这是他在youtube视频中为我们提供的@classmethods的代码。

class Employee:

    # class object attributes
    num_of_emps = 0
    raise_amt = 1.04

    def __init__(self, first, last, pay):
        self.first = first
        self.last = last
        self.email = first + '.' + last + '@email.com'
        self.pay = pay

        Employee.num_of_emps += 1

    def fullname(self):
        return f'{self.first} {self.last}'

    def apply_raise(self):
        self.pay = int(self.pay * self.raise_amt)

    @classmethod
    def set_raise_amt(cls, amount):
        cls.raise_amt = amount

    @classmethod
    def from_string(cls, emp_str):
        first, last, pay = emp_str.split('-')
        return cls(first, last, pay)


emp_1 = Employee('Corey', 'Shaffer', 50000)
emp_2 = Employee('Test', 'Employee', 60000)

emp_3 = Employee.from_string('Ezekiel-Wootton-60000')
print(emp_3.email)
print(emp_3.pay)

为什么我对from_string方法使用@classmethod?我认为使用没有装饰器的普通实例方法更有意义,因为我们不是在引用类。对?!?我们指的是将字符串作为参数传递的每个实例。

1 个答案:

答案 0 :(得分:2)

对于from_string,它可以用作备用构造函数。用法就像这样

new_employee = Employee.from_string('Corey-Shaffner-50000')

考虑一下,如果我想使用此方法构造我的第一个Employee,那么如果它是实例方法,该怎么办?我还没有实例可以调用它。


对于set_raise_amt,这很显然是您在编辑类(又称静态)变量,而不是实例变量。话虽这么说,使用getter和setter通常被认为是可怜的python。用户应该能够:

Employee.raise_amt = x