上一页 1 ··· 3 4 5 6 7 8 9 下一页
摘要: http://www.cnblogs.com/huxi/archive/2010/07/04/1771073.html 阅读全文
posted @ 2017-01-26 15:49 浪里白条_双河 阅读(65) 评论(0) 推荐(0) 编辑
摘要: http://cuiqingcai.com/968.html 阅读全文
posted @ 2017-01-26 11:37 浪里白条_双河 阅读(50) 评论(0) 推荐(0) 编辑
摘要: http://fulerbakesi.iteye.com/blog/1589097 阅读全文
posted @ 2017-01-25 14:54 浪里白条_双河 阅读(56) 评论(0) 推荐(0) 编辑
摘要: 命令行操作: http://www.cnblogs.com/bzys/archive/2013/01/20/2869029.html python操作mysql命令: http://www.runoob.com/python/python-mysql.html mysql sql语句大全 http: 阅读全文
posted @ 2017-01-25 00:21 浪里白条_双河 阅读(93) 评论(0) 推荐(0) 编辑
摘要: 链接: http://www.cnblogs.com/GarfieldTom/archive/2012/12/16/2820143.html 阅读全文
posted @ 2017-01-24 22:33 浪里白条_双河 阅读(60) 评论(0) 推荐(0) 编辑
摘要: python 操作redis的命令介绍: http://www.cnblogs.com/melonjiang/p/5342505.html 一台机器搭建多个redis: xxxx xxx --port xxxx redis图形化工具之一: https://github.com/uglide/Redi 阅读全文
posted @ 2017-01-24 18:43 浪里白条_双河 阅读(89) 评论(0) 推荐(0) 编辑
摘要: 链接:http://www.cnblogs.com/qq78292959/archive/2013/03/22/2975786.html 阅读全文
posted @ 2017-01-24 11:36 浪里白条_双河 阅读(62) 评论(0) 推荐(0) 编辑
摘要: 原文链接:http://python.jobbole.com/81546/ threading.Thread Thread 是threading模块中最重要的类之一,可以使用它来创建线程。有两种方式来创建线程:一种是通过继承Thread类,重写它的run方法;另一种是创建一个threading.Th 阅读全文
posted @ 2017-01-23 23:15 浪里白条_双河 阅读(196) 评论(0) 推荐(0) 编辑
摘要: 这段时间一直在用 Python 写一个游戏的服务器程序。在编写过程中,不可避免的要用多线程来处理与客户端的交互。 Python 标准库提供了 thread 和 threading 两个模块来对多线程进行支持。其中, thread 模块以低级、原始的方式来处理和控制线程,而 threading 模块通 阅读全文
posted @ 2017-01-23 16:13 浪里白条_双河 阅读(198) 评论(0) 推荐(0) 编辑
摘要: Python多线程编程时,经常会用到join()和setDaemon()方法,今天特地研究了一下两者的区别。 1、join ()方法:主线程A中,创建了子线程B,并且在主线程A中调用了B.join(),那么,主线程A会在调用的地方等待,直到子线程B完成操作后,才可以接着往下执行,那么在调用这个线程时 阅读全文
posted @ 2017-01-23 15:32 浪里白条_双河 阅读(155) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 下一页