少しコードを試してみましたが、問題が発生しているようです:
class Page:
cache = []
""" Return cached object """
def __getCache(self, title):
for o in Page.cache:
if o.__searchTerm == title or o.title == title:
return o
return None
""" Initilize the class and start processing """
def __init__(self, title, api=None):
o = self.__getCache(title)
if o:
self = o
return
Page.cache.append(self)
# Other init code
self.__searchTerm = title
self.title = self.someFunction(title)
それから私は試します:
a = Page('test')
b = Page('test')
print a.title # works
print b.title # AttributeError: Page instance has no attribute 'title'
このコードの何が問題なのですか? なぜ機能しないのですか?それを機能させる方法はありますか?そうでない場合、オブジェクトをキャッシュしているエンドユーザーに対して簡単かつ透過的に移動するにはどうすればよいですか?