04 2015 档案

摘要:use following command to see the current config:$ git config --listuse following command to config the username and email:$ git config user.name "YOUR... 阅读全文
posted @ 2015-04-28 04:16 zmiao 阅读(241) 评论(0) 推荐(0) 编辑
摘要:NETLINK:http://netlinksockets.sourceforge.net/index.html 阅读全文
posted @ 2015-04-25 16:06 zmiao 阅读(145) 评论(0) 推荐(0) 编辑
摘要:class Stack{private: int cur = 0; int elem[2000001];public: void push(int n); int pop(); int peek(); int size();};void Stack::push(i... 阅读全文
posted @ 2015-04-20 04:26 zmiao 阅读(151) 评论(0) 推荐(0) 编辑
摘要:Server.c#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #define... 阅读全文
posted @ 2015-04-19 08:19 zmiao 阅读(253) 评论(0) 推荐(0) 编辑
摘要:http://stackoverflow.com/questions/2391679/why-do-we-need-virtual-methods-in-cBasic idea: when mark a method as virtual in a parent class, the compile... 阅读全文
posted @ 2015-04-18 16:06 zmiao 阅读(139) 评论(0) 推荐(0) 编辑