07 2015 档案

摘要:视频播放器:PotPlayerMpc-HC超级解霸 阅读全文
posted @ 2015-07-31 16:48 drfxiaoliuzi 阅读(128) 评论(0) 推荐(0)
摘要:计算机篇在读的书:C语言:《C Primer Plus 中文第五版》《C专家编程》C++:《C++ Primer》 中文第五版Unix:《Unix环境高级编程》 W.Richard Stevens想读的书:网络编程:《Unix网络编程》W.Richard Stevens《TCP/IP详解》W.Ric... 阅读全文
posted @ 2015-07-31 10:33 drfxiaoliuzi 阅读(190) 评论(0) 推荐(0)
摘要:1 #include 2 /* 3 * 顺序表最多输入N个数 4 */ 5 #define N 10 6 #define OK 1 7 #define ERROR -1 8 9 10 struct sequeuelist { 11 int *elem; 12 int length; 13 int listsize; ... 阅读全文
posted @ 2015-07-31 09:13 drfxiaoliuzi 阅读(253) 评论(0) 推荐(0)
摘要:1. 限定符声明变量只能被读 const int i=5; int j=0; ... i=j; //非法,导致编译错误 j=i; //合法 2. 必须初始化 const int i=5; //合法 const int j; //非法,导致编译错误 ... 阅读全文
posted @ 2015-07-28 15:36 drfxiaoliuzi 阅读(293) 评论(0) 推荐(0)
摘要:有时候必须非常专注地阅读ANSI C标准才能找到某个问题的答案。一位销售工程师把下面这段代码作为测试用例发给Sun的编译小组。foo(const char **p){}int main(int argc, char **argv){ foo(argv); return 0;}如果编译这段... 阅读全文
posted @ 2015-07-27 14:57 drfxiaoliuzi 阅读(323) 评论(0) 推荐(0)
摘要:This turtorial describes how to use Qt Creator to create a small Qt application, Text Finder. It is a simplified version of the Qt UI Tools Text Finde... 阅读全文
posted @ 2015-07-14 17:04 drfxiaoliuzi 阅读(653) 评论(0) 推荐(0)
摘要:【问题】 2015/7/3 14:29:49 typedef struct T{ union { struct T* (*v)(const *[]); const * const r; };}const*(*(*(*(*v)[1])[1])(struct { const c;}*(*)(struct 阅读全文
posted @ 2015-07-04 14:12 drfxiaoliuzi 阅读(183) 评论(0) 推荐(0)