上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 28 下一页
摘要: c++数组不支持多态 https://coolshell.cn/articles/9543.htmlwhy gcc in c++ https://airs.com/ian/cxx-slides.pdfc++坑多吗 https://coolshell.cn/articles/7992.htmlwhy 阅读全文
posted @ 2018-09-23 09:21 友哥 阅读(626) 评论(1) 推荐(0) 编辑
摘要: my_global.h 阅读全文
posted @ 2018-09-21 14:56 友哥 阅读(128) 评论(0) 推荐(0) 编辑
摘要: 头文件尽量加在.cc文件中 只有需要,才加在.h中 阅读全文
posted @ 2018-09-20 20:49 友哥 阅读(155) 评论(0) 推荐(0) 编辑
摘要: 继承层次尽量少,但是千万不能因为这个原则,违反实际继承关系 阅读全文
posted @ 2018-09-20 20:47 友哥 阅读(93) 评论(0) 推荐(0) 编辑
摘要: select * from federatedTest where name='aaa';(gdb) p *start_key$2 = {key = 0x7f64f4103be8 "", length = 23, keypart_map = 1, flag = HA_READ_KEY_EXACT}( 阅读全文
posted @ 2018-09-20 11:16 友哥 阅读(193) 评论(0) 推荐(0) 编辑
摘要: http://www.yolinux.com/TUTORIALS/C++Singleton.html 阅读全文
posted @ 2018-09-19 20:44 友哥 阅读(103) 评论(0) 推荐(0) 编辑
摘要: void String::print(String *str) { char *st= (char*)Ptr, *end= st+str_length; for (; st append(STRING_WITH_LEN("\\\\")); break; case '\0': str->append(STRING_WITH_LEN("\\0")); ... 阅读全文
posted @ 2018-09-19 14:42 友哥 阅读(195) 评论(0) 推荐(0) 编辑
摘要: 长度相对固定,浪费不明显的情况下 用定长的字符串 长度不固定,变化区间可能很大 用变长的 性能 考虑预分配一个能包含90%场景的的长度 阅读全文
posted @ 2018-09-18 14:51 友哥 阅读(696) 评论(0) 推荐(0) 编辑
摘要: for (std::list::iterator iterator_condition_columns = \ condition_columns.begin();;){ begin_offset += sprintf(condition_begin_limit_rows + begin_offset, "%s asc", \ ... 阅读全文
posted @ 2018-09-18 11:06 友哥 阅读(289) 评论(0) 推荐(0) 编辑
摘要: 入参合法判断 入参若为对象,存取函数打印出异常情况 阅读全文
posted @ 2018-09-16 17:34 友哥 阅读(189) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 28 下一页