有沒有辦法在__init__
部分的類中定義一個值,將它發送到類外的某個變量而不調用類中的另一個函數?定義類之外的信息
像
class c:
def __init__(self, a):
self.a = a
b = 4 # do something like this so that outside of class c,
# b is set to 4 automatically for the entire program
# when i use class c
def function(self):
... # whatever. this doesnt matter
我有具有對於b的不同值的多個類。我只能告訴計算機改變B A名單,但我寧願集B各自類別內