上一页 1 ··· 3 4 5 6 7 8 9 下一页
摘要: from queue import Queue from datetime import datetime import threading import os,sys q = Queue() fileprefix = 'test' def creator(): for i in range(1, 100): q.put_nowait(i) print(... 阅读全文
posted @ 2018-01-03 18:25 我是外婆 阅读(105) 评论(0) 推荐(0) 编辑
摘要: class Rules(): __spe__ = "special"#特殊变量 __private = 'private' #完全私有子类无法访问 _halfprivate = 'halfprivate' #只能在类中模块中使用 def _halfprivatefunc(self): print('half func') def __p... 阅读全文
posted @ 2018-01-03 10:31 我是外婆 阅读(120) 评论(0) 推荐(0) 编辑
摘要: # 多个重载 # 可以为string a = '我爱中国' b = bytes(a, encoding='gbk') print(b) # 可以为迭代对象 c = [1, 2, 3, 4] d = bytes(c) print(d) # 同时支持b e = b'sdfsdf' print(bytes(b)) #直接输出十六进制文本串,很方便 print(bytes(a, encoding='gb... 阅读全文
posted @ 2018-01-02 17:39 我是外婆 阅读(152) 评论(0) 推荐(0) 编辑
摘要: #coding:utf-8 import logging from logging import handlers import time #简单的不同级别日志输出 # logging.debug('this is debug msg') # logging.info('this is info msg') # logging.warning('this is warning msg') # l... 阅读全文
posted @ 2018-01-02 11:39 我是外婆 阅读(123) 评论(0) 推荐(0) 编辑
摘要: #code:utff-8 import sys from functools import reduce # map #允许接受两个参数,第一个为函数,或者为函数表达式,第二个参数为可迭代对象 # 返回list def test(x): return x * 2 t = [1, 2, 3, 4] for tmp in map(test, t): print(tmp) # filt... 阅读全文
posted @ 2017-12-29 11:17 我是外婆 阅读(90) 评论(0) 推荐(0) 编辑
摘要: # code:utf-8 #导入 ABCMeta abstractmethodd from abc import ABCMeta, abstractmethod, abstractproperty class Parent(metaclass=ABCMeta): #2.+ 中以次此种方法 #Python 中没有接口的概念 __metaclass__ = ABCMeta ... 阅读全文
posted @ 2017-12-29 10:16 我是外婆 阅读(230) 评论(0) 推荐(0) 编辑
摘要: //支持七个 构造函数,可迭代,支持索引器设置访问值 BitArray b = new BitArray(8); //初始化八个bit位 最多32位? //看下默认值,默认值为bool型 foreach (bool t in b) { Console.WriteLine(t); //全部为fa... 阅读全文
posted @ 2017-12-15 10:23 我是外婆 阅读(1778) 评论(0) 推荐(0) 编辑
摘要: void test(int & val); void test2(const int & val); void test3(int val); struct Person{ string name; int age; int weight; }; int main() { int rats = 10; int & rodents = rats; ... 阅读全文
posted @ 2017-12-12 09:16 我是外婆 阅读(130) 评论(0) 推荐(0) 编辑
摘要: char *p; // 不以空字符结尾的只能是字符数组 char str[] = {'a', 'b', 'c', 'd', 'e'}; char str1[] = {'a', 'b', 'c', 'd', 'e', '\0'}; cout << str1 << endl; char str2[] = "sdfsdfsdfwerwetrwerfsd";... 阅读全文
posted @ 2017-12-10 16:03 我是外婆 阅读(95) 评论(0) 推荐(0) 编辑
摘要: int *p = new int; cout <<"p` address :" << p << endl; *p = 123; delete p; // int *p2 = 123; int *p1 = {1, 2, 3, 4, 6}; //以上形式是错误的,计算机只会分配指针占用的内存,但是不会初始化 右边数据的内存 //... 阅读全文
posted @ 2017-12-08 11:43 我是外婆 阅读(179) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 下一页