上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 57 下一页

2015年7月9日

c++ 函数库查询

摘要: http://www.cplusplus.com/reference/algorithm/http://www.enet.com.cn/eschool/video/c++/ 阅读全文

posted @ 2015-07-09 19:01 雨渐渐 阅读(1316) 评论(0) 推荐(0) 编辑

c++ 函数返回指针 及用法

摘要: #include#includeusing namespace std;string fun1(int a){string str = "a";return str;}char* fun2(int a){char *p = new char[2];p[0] = 'a';p[1] = '\0';ret... 阅读全文

posted @ 2015-07-09 16:56 雨渐渐 阅读(263) 评论(0) 推荐(0) 编辑

2015年7月2日

c++ 哪些自定义的数据类型

摘要: http://www.cnblogs.com/ShaneZhang/archive/2013/06/21/3147648.html这些数据类型是 C99 中定义的,具体定义在:/usr/include/stdint.h ISO C99: 7.18 Integer types 1 /* There... 阅读全文

posted @ 2015-07-02 16:24 雨渐渐 阅读(365) 评论(0) 推荐(0) 编辑

2015年7月1日

c++ uuid生成法则

摘要: http://www.jb51.net/LINUXjishu/39614.htmlCentOS #include 找不到文件解决方法:sudo yum install e2fsprogs-develsudo yum install uuid-develsudo yum install libuui... 阅读全文

posted @ 2015-07-01 23:05 雨渐渐 阅读(5945) 评论(0) 推荐(0) 编辑

2015年6月26日

c++ std::bitset

摘要: 转载自作用:及 64位 移位 取或 用64个位存储64个位,取 或 merge 。 然后查索引即知道id是否存在~~ 目标:省空间。#include #include #include using namespace std;int main(){ //bitset b;/... 阅读全文

posted @ 2015-06-26 16:16 雨渐渐 阅读(2641) 评论(0) 推荐(0) 编辑

2015年6月25日

c++ std::string 用法

摘要: std::string用法总结 在平常工作中经常用到了string类,本人记忆了不好用到了的时候经常要去查询。在网上摘抄一下总结一下,为以后的查询方便:string类的构造函数:string(const char *s); //用c字符串s初始化string(int n,char c); //用n个... 阅读全文

posted @ 2015-06-25 18:37 雨渐渐 阅读(3576) 评论(0) 推荐(0) 编辑

c++ 关于换行符

摘要: windows: \r\nlinux: \nmac: \rhttp://blog.chinaunix.net/uid-12706763-id-10830.html不同的OS有不同的换行符:OS换行符汉字码UNIXLFJIS, EUC, (ShiftJIS)WindowsCR+LFShiftJ... 阅读全文

posted @ 2015-06-25 14:53 雨渐渐 阅读(5076) 评论(0) 推荐(0) 编辑

2015年6月24日

protocol buffer 整数序列化

摘要: http://blog.csdn.net/csfreebird/article/details/7624807varints用于正整数 (无符号整数)varints 是 一个很不错的技术。将一个整数序列化成1或者多个字节。想起以前我们总是使用4字节表示整数,真的很浪费啊。只有真正追求完美的人才会重视... 阅读全文

posted @ 2015-06-24 19:17 雨渐渐 阅读(597) 评论(0) 推荐(0) 编辑

2015年6月23日

c++ freelockquque

摘要: http://www.boost.org/doc/libs/1_56_0/doc/html/boost/lockfree/queue.htmlClass template queueboost::lockfree::queueSynopsis// In header: template class ... 阅读全文

posted @ 2015-06-23 12:11 雨渐渐 阅读(467) 评论(0) 推荐(0) 编辑

2015年6月18日

c++ 继承多个类 及虚函数

摘要: #include using namespace std;class BaseA {public: virtual void say() { cout << "hello world" << endl; }};class BaseB {public: virtual void eat() { cou... 阅读全文

posted @ 2015-06-18 21:14 雨渐渐 阅读(8544) 评论(0) 推荐(1) 编辑

上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 57 下一页

导航