以下のトピックは、以下の問題の代わりにチェックされています。
Python で、自分のクラスのインスタンスが存在するかどうかを確認するにはどうすればよいですか?
私はPythonの完全な初心者であるため、ご容赦ください。クラスに取り組み始めたばかりで、単純な家族の財務エミュレーターが良い出発点になると判断しました。以下は私のコードです:
class Family(object):
def __init__(self,name,role,pay,allowance):
self.name = name
self.role = role
self.pay = pay
self.allowance = allowance
def describe(self):
print self.name + " is the " + self.role + " of the family. He brings home " + str(self.pay) + " in wages and has a personal allowance of " + str(self.allowance) + "."
class Parent(Family):
def gotRaise(self,percent):
self.pay = self.pay * int(1 + percent)
print self.name + " received a pay increase of " + str((100*percent)) + ("%. His new salary is ") + str(self.pay) + "."
def giveAllowance(self,val,target):
if hasattr(target, Family):
self.pay = self.pay - int(val)
target.pay = target.pay + int(val)
print self.name + " gave " + target.name + " an allowance of " + str(val) + "." + target.name + "'s new allowance is " + str(target.allowance) + "."
else: print ""
class Child(Family):
def stealAllowance(self,val,target):
self.allowance = self.allowance + int(val)
target.allowance = target.allowance - int(val)
def spendAllowance(self,val):
self.allowance = self.allowance - int(val)
monty = Parent("Monty","Dad",28000,2000)
monty.describe() # 'Monty is the Dad of the family. He brings home 28000 in wages and has a personal allowance of 2000.'
monty.giveAllowance(1000,jane) # Produces a "NameError: name 'jane' is not defined" error.
問題のポイントは、giveAllowance() 関数です。Family のターゲット インスタンスが存在するかどうかを確認し、存在する場合は値の転送を返し、存在しない場合は通常の文字列を返す方法を見つけようとしています。ただし、hasattr()、try - NameError を除き、isinstance()、および vars()[target] でさえ、上記の NameError に対処できません。
ここで、クラスに関して行うべき何かが欠けていますか。別のクラス内からのインスタンスをチェックするときの例外、間違った構文など? 上記のリンクのいずれかから、それが唯一の方法であるように思われるので、可能であれば、辞書が最後の手段でない限り、辞書には近づかないようにしたいと思います。
ありがとう!