class Chainer(object):
def __init__(self,methods,callback=None):
self._methods=methods
self._callback=callback
def abc(a,b):
return a + b
a=Chainer('abc',callback=abc(3,4))
print a._methods
print a._callback
print type(a._callback)
print str(a._callback)
C:\Python27\python.exe C:/Users/TLCB/PycharmProjects/untitled/mycompany/ccc/a19.py
abc
7
<type 'int'>
7
python 回调函数
转载本文章为转载内容,我们尊重原作者对文章享有的著作权。如有内容错误或侵权问题,欢迎原作者联系我们进行内容更正或删除文章。
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
















