上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 28 下一页
摘要: /* update the time of the last modification (in handler::update_time) */ #define HA_STATUS_TIME 4 /* update the 'constant' part of the info: handler::max_data_file_length, max_index_fil... 阅读全文
posted @ 2018-09-12 00:17 友哥 阅读(241) 评论(0) 推荐(0) 编辑
摘要: 基类和子类接口保持统一,其他可以定制化 阅读全文
posted @ 2018-09-10 21:20 友哥 阅读(106) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-09-09 12:06 友哥 阅读(119) 评论(0) 推荐(0) 编辑
摘要: 一旦重启,很容易就会丢失的 阅读全文
posted @ 2018-09-09 10:20 友哥 阅读(215) 评论(0) 推荐(0) 编辑
摘要: 好开心,再也不用再多个工具之间切换了,哈哈 擦,功能太弱 阅读全文
posted @ 2018-09-08 22:09 友哥 阅读(272) 评论(0) 推荐(0) 编辑
摘要: 入参检查,且不正常情况需要打印出来,供排查问题 阅读全文
posted @ 2018-09-07 10:34 友哥 阅读(160) 评论(0) 推荐(0) 编辑
摘要: #include using namespace std; int main () { // declare simple variables int i; int j; double d; // declare reference variables int& r = i; double& s = d; j = 1... 阅读全文
posted @ 2018-09-06 10:47 友哥 阅读(135) 评论(0) 推荐(0) 编辑
摘要: #include #include class destructor_test{ public: ~destructor_test(){ std::cout << "~destructor_test" << std::endl; } }; class test{ private: destructor_test destructor_test_instance; };... 阅读全文
posted @ 2018-09-05 15:30 友哥 阅读(373) 评论(0) 推荐(0) 编辑
摘要: 一旦类初始化,那么对象必然会被创建,指针则可以在需要时候再去初始化所指向。 阅读全文
posted @ 2018-09-05 14:57 友哥 阅读(261) 评论(0) 推荐(0) 编辑
摘要: 如果可以只出现在.cc中,就不出现在.h中 阅读全文
posted @ 2018-09-05 14:13 友哥 阅读(100) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 28 下一页