09 2017 档案
摘要:clear(self);
is_set(self);
set(self);
wait(self,timeout=None);
super方法
阅读全文
摘要:Queue Queue 创建一个给定最大大小(maxsize)的队列对象 if maxsize<=0,队列大小为无限大 put(self, item, block=True, timeout=None) 将item放入队列中 if block=True,timeout=None:阻塞调用,无超时if
阅读全文
摘要:1. 类对象、实例对象、方法对象;
2. 属性之“变量属性”、作用域问题、访问限制问题;
3. 父类、子类(继承、多态);
4. classmethod、staticmethod;
阅读全文
摘要:一些概念;
进程是如何产生的?
父/子进程;
Job Control;
ps 命令;
priority/niceness;
top | htop 命令 ;
echo $$ 获得当前bash的PID;
pstree 显示进程树;
pgrep 根据特定条件查找PID信息;
阅读全文
摘要:Logger记录器、Handler处理器、Formatter格式化器、Filter过滤器;logging.GetLogger( )、logging.basicConfig( )
阅读全文
摘要:列表解析式;
生成器解析;
集合解析;
字典解析;
map();
functools.reduce();
应用:str—>int,str规范性检查,实现阶乘prod()
阅读全文