在调用self对象时,本类调用用Win32Info().collect()

import platform

class Test:
def test(self):
func = getattr(self,'windows')
func()

@staticmethod
def windows():
from plugins.collect_windows_info import Win32Info
return Win32Info().collect() #在调用self对象时,本类调用用Win32Info().collect()
@staticmethod
def linux():
return 'OK2'
def test2(self):
return Test().test()




if __name__ == '__main__':
ob = Test()
op = ob.test2()
posted @ 2019-11-19 17:03  技术颜良  阅读(211)  评论(0)    收藏  举报