码迷,mamicode.com
首页 > 编程语言 > 详细

python基础教程笔记-项目1-即时标记-Day3

时间:2015-01-26 10:15:18      阅读:282      评论:0      收藏:0      [点我收藏+]

标签:python   即时标记   getattr   callable   callback   

昨天实现了简单的txt转html,今天更深入一步。

主要了解下带星号的参数、getattr函数和callable函数

先看Handler类:

class Handler:
    def callback(self, prefix, name, *args):
        method = getattr(self, prefix+name, None)
        if callable(method): return method(*args)
    def start(self, name):
        self.callback('start_', name)
    def end(self, name):
        self.callback('end_', name)
    def sub(self, name):
        def substitution(match):
            result = self.callback('sub_', name, match)
            if result is None: match.group(0)
            return result
        return substitution
def sub_test(self, name):
        print name

今天了解下callback函数

先看callback的参数

带*的参数是什么意思?

下面来看一段代码:

def calc(*numbers):
	sum = 0
	for i in numbers:
		sum = sum + i
	return sum
	
result = calc(1,2,3)
temp = calc()
print result
printa temp

执行结果为:

技术分享

也就是说,带*的参数代表一个数量可变的参数(长度可为0)。其具体讲解见链接:

http://www.liaoxuefeng.com/wiki/001374738125095c955c1e6d8bb493182103fac9270762a000/001374738449338c8a122a7f2e047899fc162f4a7205ea3000

然后是getattr

其中官方文档对getattr()的解释为:
getattr(object, name[, default]) 

Return the value of the namedattribute of object. name must be a string. If the string is the name of one ofthe object‘s attributes, the result is the value of that attribute. Forexample, getattr(x, ‘foobar‘) is equivalent to x.foobar. If the named attributedoes not exist, default is returned if provided, otherwise AttributeError israised.

也就是说,若对象中有名为name(name必须是一个字符串)的属性,则返回该属性。如果对象中没有该属性,若getattr中提供了default参数,返回提供的default,否则抛出一个AttributeError错误。

看下面这个例子:

lass Test:
	def print_hello(self):
		print 'func print_hello work'
		
a = Test()
b = getattr(a,'print_hello',None)
print b
b()
b = getattr(a,'NoFunc',None)
print b

执行结果为:

技术分享

第一次使用getattr函数时,b尝试获取a中的print_hello函数,从打印结果可看出获取成功之后我们调用了b。

第二次使用getattr函数时,b尝试获取a中的NoFunc函数,从打印结果可看出a中并没有名为NoneFunc的函数,因此b的值为None

接着看下callable函数

看图

技术分享

很明显,若callable中的参数为函数名,则返回True,否则返回False。另外可以看到命令行中func()执行了一次。函数的执行发生在a = func()这一过程中

综上,函数callback(self,prefix, name, *args)的功能为:

在使用callback函数的对象中查询其是否拥有名为’prefix+name’的函数。若有该函数,则调用该函数,并返回该函数的执行结果。(函数名为prefix+name,参数为*args)。下面用代码试下:

class CalTest:
	def callback(self,prefix,name,*args):
		method = getattr(self,prefix+name,None)
		if callable(method):return method(*args)
	def printSum(self,*arg):
		sum = 0
		for i in arg:
			sum = sum + i
		return sum
		
a = CalTest();
b = a.callback('print','Sum',1,2,3)
print b
b = a.callback('print','Sum')
print b
执行结果为:

技术分享

python基础教程笔记-项目1-即时标记-Day3

标签:python   即时标记   getattr   callable   callback   

原文地址:http://blog.csdn.net/miaoyunzexiaobao/article/details/43149117

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