3

标题中的问题

示例代码:

>>> j.type()
u'joint'
>>> type(j)
<class 'pymel.core.nodetypes.Joint'>
4

1 回答 1

2

看看这个简单的例子。您正在尝试比较两个不同的东西 -Joint类方法type和 python 内置函数type- 它们具有相同的名称,所有这些:

class Joint():
    def type(self):
        return u'joint'

>>> j = Joint()
>>> j.type()
'joint'
>>> type(j)
<class '__main__.Joint'>
于 2015-12-04T09:08:28.403 回答