mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-22 17:12:55 +08:00
14 lines
143 B
Python
14 lines
143 B
Python
|
|
||
|
class Test:
|
||
|
val = 1
|
||
|
|
||
|
def cb(self):
|
||
|
print(self.val)
|
||
|
self.val += 1
|
||
|
|
||
|
|
||
|
t = Test()
|
||
|
fn = getattr(t, 'cb')
|
||
|
fn()
|
||
|
print(t.val)
|