09 2015 档案
摘要:#ifndef _STATIC_QUEUE_H_#define _STATIC_QUEUE_H_// 静态queue模板,用数组实现的队列,在初始化的时候需要指定长度templateclass Static_Queue{public: Static_Queue(unsigned int size);...
阅读全文
摘要: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...
阅读全文
摘要:1 #include 2 #include 3 #include 4 #define MaxBinLength 16 5 6 //获取无符号数的二进制,这是我自己写的,更简单的方法可以用bitset代替 7 char* getUnsignedBinary(unsigned int num)...
阅读全文