上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 25 下一页
摘要: 1 #!/usr/bin/env python 2 import multiprocessing 3 import time 4 def f1(a1): 5 time.sleep(2) 6 print(a1) 7 if __name__ == '__main__': 8 t = multiprocessing.Process(target=f1,args=... 阅读全文
posted @ 2017-02-25 20:41 失落的黎明 阅读(688) 评论(0) 推荐(0) 编辑
摘要: 1 #!/usr/bin/env python 2 from multiprocessing import Process 3 4 li = [] 5 def f1(a1): 6 li.append(a1) 7 print(li) 8 if __name__ == '__main__': 9 for i in range(10): 10 ... 阅读全文
posted @ 2017-02-25 20:39 失落的黎明 阅读(111) 评论(0) 推荐(0) 编辑
摘要: 1 #!/usr/bin/env python 2 from multiprocessing import Process,Manager 3 4 #Manager进程与进程之间通信 5 def Foo(i,dic): 6 dic[i] = 100+i 7 print(dic.values()) 8 if __name__ == '__main__': 9 ... 阅读全文
posted @ 2017-02-25 20:36 失落的黎明 阅读(193) 评论(0) 推荐(0) 编辑
摘要: 1 import queue 2 import threading 3 4 5 class ThreadPool(object): 6 7 def __init__(self, max_num=20): 8 self.queue = queue.Queue(max_num) 9 for i in range(max_num): 10... 阅读全文
posted @ 2017-02-25 20:35 失落的黎明 阅读(103) 评论(0) 推荐(0) 编辑
摘要: 1 import queue 2 import contextlib 3 import time 4 @contextlib.contextmanager 5 def worker_state(xxx,val): 6 xxx.append(val) 7 print("before",xxx) 8 try: 9 time.sleep(1) ... 阅读全文
posted @ 2017-02-25 20:33 失落的黎明 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 1 import queue 2 import threading 3 import contextlib 4 import time 5 6 StopEvent = object() 7 8 9 class ThreadPool(object): 10 11 def __init__(self, max_num): 12 13 ... 阅读全文
posted @ 2017-02-25 20:29 失落的黎明 阅读(233) 评论(0) 推荐(0) 编辑
摘要: 其他相关 一、isinstance(obj, cls) 检查是否obj是否是类 cls 的对象 二、issubclass(sub, super) 检查sub类是否是 super 类的派生类 1 class Foo(object): 2 pass 3 4 class Bar(Foo): 5 pass 阅读全文
posted @ 2017-02-23 19:39 失落的黎明 阅读(277) 评论(0) 推荐(0) 编辑
摘要: 《Python 面向对象(初级篇)》文章介绍了面向对象基本知识: 面向对象是一种编程方式,此编程方式的实现是基于对 类 和 对象 的使用 类 是一个模板,模板中包装了多个“函数”供使用(可以讲多函数中公用的变量封装到对象中) 对象,根据模板创建的实例(即:对象),实例用于调用被包装在类中的函数 面向 阅读全文
posted @ 2017-02-23 18:26 失落的黎明 阅读(322) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-02-23 16:19 失落的黎明 阅读(466) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-02-23 15:47 失落的黎明 阅读(593) 评论(0) 推荐(0) 编辑
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 25 下一页