国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > Python > 正文

Python中實(shí)現(xiàn)參數(shù)類型檢查的簡單方法

2020-01-04 19:17:35
字體:
供稿:網(wǎng)友

Python是一門弱類型語言,很多從C/C++轉(zhuǎn)過來的朋友起初不是很適應(yīng)。比如,在聲明一個(gè)函數(shù)時(shí),不能指定參數(shù)的類型。用C做類比,那就是所有參數(shù)都是void*類型!void類型強(qiáng)制轉(zhuǎn)換在C++中被廣泛地認(rèn)為是個(gè)壞習(xí)慣,不到萬不得已是不會(huì)使用的。

Python自然沒有類型強(qiáng)制轉(zhuǎn)換一說了,因?yàn)樗莿?dòng)態(tài)語言。首先,所有對(duì)象都從Object繼承而來,其次,它有強(qiáng)大的內(nèi)省,如果調(diào)用某個(gè)不存在的方法會(huì)有異常拋出。大多數(shù)情況,我們都不需要做參數(shù)類型栓查,除了一些特殊情況。例如,某個(gè)函數(shù)接受一個(gè)str類型,結(jié)果在實(shí)際調(diào)用時(shí)傳入的是unicode,測(cè)試過程中又沒有代碼覆蓋到,這樣問題就比較嚴(yán)重了。解決方法也很簡單,借助Python的內(nèi)省,很容易就能判斷出參數(shù)的類型。但是每個(gè)地方都寫檢查代碼會(huì)很累贅,何況它帶來的實(shí)際價(jià)值并不高。一個(gè)好的解決方法是使用裝飾器。

''' >>> NONE, MEDIUM, STRONG = 0, 1, 2 >>> >>> @accepts(int, int, int) ... def average(x, y, z): ... return (x + y + z) / 2 ... >>> average(5.5, 10, 15.0) TypeWarning: 'average' method accepts (int, int, int), but was given (float, int, float) 15.25'''def accepts(*types, **kw): """ Function decorator. Checks that inputs given to decorated function are of the expected type.Parameters: types -- The expected types of the inputs to the decorated function.Must specify type for each parameter. kw -- Optional specification of 'debug' level (this is the only validkeyword argument, no other should be given).debug = ( 0 | 1 | 2 )""" if not kw:# default level: MEDIUMdebug = 1 else:debug = kw['debug'] try:def decorator(f):def newf(*args):if debug == 0:return f(*args)assert len(args) == len(types)argtypes = tuple(map(type, args))if argtypes != types:msg = info(f.__name__, types, argtypes, 0)if debug == 1:print >> sys.stderr, 'TypeWarning: ', msgelif debug == 2:raise TypeError, msgreturn f(*args)newf.__name__ = f.__name__return newfreturn decorator except KeyError, key:raise KeyError, key + "is not a valid keyword argument" except TypeError, msg:raise TypeError, msgdef info(fname, expected, actual, flag): """ Convenience function returns nicely formatted error/warning msg. """ format = lambda types: ', '.join([str(t).split("'")[1] for t in types]) expected, actual = format(expected), format(actual) msg = "'%s' method " % fname /+ ("accepts", "returns")[flag] + " (%s), but " % expected/+ ("was given", "result is")[flag] + " (%s)" % actual return msg

本質(zhì)上講,這也是一種運(yùn)行時(shí)檢查,但效果已經(jīng)不錯(cuò)了。
更多有趣的裝飾器的使用,可以參考這篇文章

發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 广州市| 伊通| 应城市| 盖州市| 潞城市| 彰武县| 循化| 扶沟县| 哈密市| 伊春市| 正宁县| 安图县| 镇沅| 会昌县| 武平县| 儋州市| 盐边县| 隆德县| 大埔县| 上林县| 芒康县| 镇远县| 望江县| 稷山县| 宽甸| 锦屏县| 白朗县| 樟树市| 类乌齐县| 郴州市| 蓝田县| 新巴尔虎左旗| 南郑县| 尖扎县| 安徽省| 邹城市| 永吉县| 大丰市| 临洮县| 容城县| 肥乡县|