09 2015 档案

摘要:#ifndef _STATIC_QUEUE_H_#define _STATIC_QUEUE_H_// 静态queue模板,用数组实现的队列,在初始化的时候需要指定长度templateclass Static_Queue{public: Static_Queue(unsigned int size);... 阅读全文
posted @ 2015-09-26 15:07 你好阿汤哥 阅读(679) 评论(0) 推荐(0) 编辑
摘要:1 #include 2 using namespace std; 3 4 typedef int int32_t; 5 6 struct IMsgBody{ 7 int body; 8 }; 9 10 struct Arg{11 int arg;12 };13 14 cla... 阅读全文
posted @ 2015-09-19 17:12 你好阿汤哥 阅读(2524) 评论(0) 推荐(0) 编辑
摘要:1 #include 2 #include 3 #include 4 #define MaxBinLength 16 5 6 //获取无符号数的二进制,这是我自己写的,更简单的方法可以用bitset代替 7 char* getUnsignedBinary(unsigned int num)... 阅读全文
posted @ 2015-09-13 13:57 你好阿汤哥 阅读(395) 评论(0) 推荐(0) 编辑