欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2023-11-16 12:17:10
本文实例讲述了python实现得到一个给定类的虚函数的方法,分享给大家供大家参考。具体如下: 现来看看如下代码: import wx for metho...

本文实例讲述了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程序设计有所帮助。