testconstructorfield1.py
来自「Python Development Environment (Python I」· Python 代码 · 共 35 行
PY
35 行
class A:
print "Initializing A"
anAttribute = "hello"
def myMethod(self):
print self.anAttribute
a = A()
a.myMethod()
##c
'''
<config>
<classSelection>0</classSelection>
<attributeSelection>
<int>0</int>
</attributeSelection>
<offsetStrategy>1</offsetStrategy>
</config>
'''
##r
class A:
def __init__(self, anAttribute):
self.anAttribute = anAttribute
print "Initializing A"
anAttribute = "hello"
def myMethod(self):
print self.anAttribute
a = A()
a.myMethod()
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?