一:threading VS Thread
众所周知,python是支持多线程的,而且是native的线程,其中threading是对Thread模块做了包装,可以更加方面的被使用,threading模块里面主要对一些线程操作对象化了,创建了Thread的类。
使用线程有两种模式,一种是创建线程要执行的函数,把这个函数传递进Thread对象里,让它来执行,一种是直接从Thread继承,创建一个新的class,把线程执行的代码放到这个新的类里面,用例如下:
①使用Thread来实现多线程
#!/usr/bin/env python #-*- coding:utf-8 -*- import string import threading import time def threadMain(a): global count,mutex #获得线程名 threadname = threading.currentThread().getName() for x in xrange(0,int(a)): #获得锁 mutex.acquire() count += 1 #释放锁 mutex.release() print threadname,x,count time.sleep() def main(num): global count,mutex threads = [] count = 1 #创建一个锁 mutex = threading.Lock() #先创建线程对象 for x in xrange(0,num): threads.append(threading.Thread(target = threadMain,args=(10,))) for t in threads: t.start() for t in threads: t.join() if __name__ == "__main__": num = 4 main(num);
②使用threading来实现多线程
#!/usr/bin/env python #-*- coding:utf-8 -*- import threading import time class Test(threading.Thread): def __init__(self,num): threading.Thread.__init__(self): self._run_num = num def run(self): global count,mutex threadName = threading.currentThread.getName() for x in xrange(0,int(self._run_num)): mutex.acquire() count += 1 mutex.release() print threadName,x,count time.sleep(1) if __name__ == "__main__": global count,mutex threads = [] num = 4 count = 1 mutex.threading.Lock() for x in xrange(o,num): threads.append(Test(10)) #启动线程 for t in threads: t.start() #等待子线程结束 for t in threads: t.join()
二:optparser VS getopt
①使用getopt模块处理Unix模式的命令行选项
getopt模块用于抽出命令行选项和参数,也就是sys.argv,命令行选项使得程序的参数更加灵活,支持短选项模式和长选项模式
例:python scriptname.py –f “hello” –directory-prefix=”/home” –t --format ‘a'‘b'
getopt函数的格式:getopt.getopt([命令行参数列表],‘短选项',[长选项列表])
其中短选项名后面的带冒号(:)表示该选项必须有附加的参数
长选项名后面有等号(=)表示该选项必须有附加的参数
返回options以及args
options是一个参数选项及其value的元组((‘-f','hello'),(‘-t',''),(‘—format',''),(‘—directory-prefix','/home'))
args是除去有用参数外其他的命令行 输入(‘a',‘b')
#!/usr/bin/env python # -*- coding:utf-8 -*- import sys import getopt def Usage(): print "Usage: %s [-a|-0|-c] [--help|--output] args..."%sys.argv[0] if __name__ == "__main__": try: options,args = getopt.getopt(sys.argv[1:],"ao:c",['help',"putput="]): print options print "\n" print args for option,arg in options: if option in ("-h","--help"): Usage() sys.exit(1) elif option in ('-t','--test'): print "for test option" else: print option,arg except getopt.GetoptError: print "Getopt Error" Usage() sys.exit(1)
②optparser模块
#!/usr/bin/env python # -*- coding:utf-8 -*- import optparser def main(): usage = "Usage: %prog [option] arg1,arg2..." parser = OptionParser(usage=usage) parser.add_option("-v","--verbose",action="store_true",dest="verbose",default=True,help="make lots of noise [default]") parser.add_option("-q","--quiet",action="store_false",dest="verbose",help="be vewwy quiet (I'm hunting wabbits)") parser.add_option("-f","--filename",metavar="FILE",help="write output to FILE") parser.add_option("-m","--mode",default="intermediate",help="interaction mode: novice, intermediate,or expert [default: %default]") (options,args) = parser.parse_args() if len(args) != 1: parser.error("incorrect number of arguments") if options.verbose: print "reading %s..." %options.filename if __name__ == "__main__": main()
以上就是threading VS Thread、optparser VS getopt 的相互比较,希望对大家学习模块有所帮助。
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
《魔兽世界》大逃杀!60人新游玩模式《强袭风暴》3月21日上线
暴雪近日发布了《魔兽世界》10.2.6 更新内容,新游玩模式《强袭风暴》即将于3月21 日在亚服上线,届时玩家将前往阿拉希高地展开一场 60 人大逃杀对战。
艾泽拉斯的冒险者已经征服了艾泽拉斯的大地及遥远的彼岸。他们在对抗世界上最致命的敌人时展现出过人的手腕,并且成功阻止终结宇宙等级的威胁。当他们在为即将于《魔兽世界》资料片《地心之战》中来袭的萨拉塔斯势力做战斗准备时,他们还需要在熟悉的阿拉希高地面对一个全新的敌人──那就是彼此。在《巨龙崛起》10.2.6 更新的《强袭风暴》中,玩家将会进入一个全新的海盗主题大逃杀式限时活动,其中包含极高的风险和史诗级的奖励。
《强袭风暴》不是普通的战场,作为一个独立于主游戏之外的活动,玩家可以用大逃杀的风格来体验《魔兽世界》,不分职业、不分装备(除了你在赛局中捡到的),光是技巧和战略的强弱之分就能决定出谁才是能坚持到最后的赢家。本次活动将会开放单人和双人模式,玩家在加入海盗主题的预赛大厅区域前,可以从强袭风暴角色画面新增好友。游玩游戏将可以累计名望轨迹,《巨龙崛起》和《魔兽世界:巫妖王之怒 经典版》的玩家都可以获得奖励。