vector<bool>
摘要:#include #include using namespace std; const unsigned char mask[] = { 0x80, 0x40, 0x20, 0x10, 0x08, 0x04, 0x02, 0x01 }; bool tcget(unsigned char * tc, int i) { bool b = (*(tc + i / 8) & mask[(i)...
阅读全文
posted @
2016-05-05 19:16
bob1982
阅读(199)
推荐(0)