码迷,mamicode.com
首页 > 其他好文 > 详细

如何访问私有方法

时间:2015-10-16 10:08:26      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:

# -*- coding: utf-8 -*-
#python 27
#xiaodeng
#如何访问私有方法


class Securityp(object):
    
    def __my(self):
        print "Bet you can‘t see me..."

b=Securityp()
print dir(b) #打印出所有的方法和属性等信息
print b.__dict__  #没有打印结果
b._Securityp__my()
‘‘‘
[‘_Securityp__my‘, ‘__class__‘, ‘__delattr__‘, ‘__dict__‘, ‘__doc__‘, ‘__format__‘, ‘__getattribute__‘, ‘__hash__‘, ‘__init__‘, ‘__module__‘, ‘__new__‘, ‘__reduce__‘, ‘__reduce_ex__‘, ‘__repr__‘, ‘__setattr__‘, ‘__sizeof__‘, ‘__str__‘, ‘__subclasshook__‘, ‘__weakref__‘]
{}
Bet you can‘t see me...
‘‘‘

 

如何访问私有方法

标签:

原文地址:http://www.cnblogs.com/dengyg200891/p/4884291.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!