发布时间:2014-12-25 17:59:30
find 函数原型: size_t find ( const string& str, size_t pos = 0 ) const;size_t find ( const char* s, size_t pos, size_t n ) const;size_t find ( const char* s, size_t pos = 0 ) const;size_t find ( char c, size_t pos = 0 ) const; 参数说明:pos查找起始位置 n待查找字符.........【阅读全文】
发布时间:2014-11-13 15:52:21
前两天和阿彬扯淡的时候(注意不是扯蛋),他说自己一个礼拜解决了三个Core dumped,华丽丽之极,让我对其敬仰、膜拜之情如滔滔之江水,绵绵不绝。今天我也来谈一下Linux环境下开发时经常遇到的“Segmetation fault”的一点点个人看法,也算是抛砖引玉了。 (备注:我的glibc版本是2.12,GCC.........【阅读全文】
发布时间:2014-11-06 16:13:43
首先看以下一段代码:1 #include 2 3 int main()4 {5 unsigned char t = 0xa5;6 unsigned char i = (~t)>>4;7 printf("%x\n", i).........【阅读全文】