复杂大白

文章
6
资源
0
加入时间
2年10月21天

eclipse+cygwin设置c++11编译环境

1、设置环境变量Project->Properties->C++ General->Pahts and Symbols->Symbols(选项卡)2、Project->Properties->C/C++ Build > Settings > GCC C++ Compiler > Miscellaneous > other flages ,在原来的基础上添

C语言设计模式:迭代器

C语言实现迭代器有很多方法,linux内核的经典代码在文件include\linux\list.h中:#define LIST_POISON1  ((void *) 0x00100100)#define LIST_POISON2  ((void *) 0x00200200)struct list_head {struct list_head *next, *pr

详解Python中的文件操作

1 能调用方法的一定是对象,比如数值、字符串、列表、元组、字典,甚至文件也是对象,Python中一切皆为对象。