当前位置: 移动技术网 > IT编程>脚本编程>Python > python实现得到一个给定类的虚函数

python实现得到一个给定类的虚函数

2019年03月26日  | 移动技术网IT编程  | 我要评论

吴三桂简介,卜六,廉江市教育局

本文实例讲述了python实现得到一个给定类的虚函数的方法,分享给大家供大家参考。具体如下:

现来看看如下代码:

import wx 

for method in dir(wx.pypanel):   #这里改成给定的类 
  if method.startswith("base_"): 
    print method 

输出的结果为:

base_acceptsfocus
base_acceptsfocusfromkeyboard
base_addchild
base_dogetbestsize
base_dogetclientsize
base_dogetposition
base_dogetsize
base_dogetvirtualsize
base_domovewindow
base_dosetclientsize
base_dosetsize
base_dosetvirtualsize
base_enable
base_getdefaultattributes
base_getmaxsize
base_initdialog
base_oninternalidle
base_removechild
base_shouldinheritcolours
base_transferdatafromwindow
base_transferdatatowindow
base_validate 

另附一个常用的str的方法,官方文档如下:
str.startswith(prefix[,start[,end]])

return true if string starts with theprefix, otherwise returnfalse.prefix can also be a tuple of prefixes to look for. with optionalstart, test string beginning at that position. with optionalend, stop comparing string at that position.

如果string以prefix开头,函数返回true.

希望本文所述对大家的python程序设计有所帮助。

如对本文有疑问,请在下面进行留言讨论,广大热心网友会与你互动!! 点击进行留言回复

相关文章:

验证码:
移动技术网