0

我一直在查看以下代码,并对它的含义有疑问。包整体具有以下类:Segment、Cell、Column、Region 和 SegmentUpdateInfo。有问题的代码是最后一行。提前致谢!

class SegmentUpdateInfo(object):
    def __init__(self, cell, segment, activeSynapses, addNewSynapses=False):
        #Constructor parameter initialization...

        region = self.cell.column.region #What does this mean and why would someone use 
                                         #it?          
4

1 回答 1

1

有人这样做的最可能原因是,他们可以在其中引用该变量而无需每次都__init__()键入。使用的方法中self.cell.column.region还有其他地方吗?__init__()region

于 2012-07-29T02:41:04.267 回答