摘要: 个人觉得杨过还是喜欢郭芙的,郭芙也是喜欢杨过的,但互相有一种对峙的心理,放不下自己的面子。原著:一见杨过,难误终身。看电视剧,看他两个对话,在加上那个配乐,还真受不了。 阅读全文
posted @ 2014-06-27 22:07 zzyoucan 阅读(122) 评论(0) 推荐(0) 编辑
摘要: //http://zh.cppreference.com/w/cpp/memory/shared_ptr/shared_ptr#include #include void fun(int* p){}int main(){ { std::shared_ptr ptr = std::... 阅读全文
posted @ 2014-06-27 18:17 zzyoucan 阅读(206) 评论(0) 推荐(0) 编辑
摘要: #include typedef int (__stdcall* FUN)(int);//定义函数指针,参数为Int,返回为int,调用约定__stdcallint __stdcall fun1(int x){ std::cout << x << std::endl; return x;... 阅读全文
posted @ 2014-06-27 17:06 zzyoucan 阅读(156) 评论(0) 推荐(0) 编辑
摘要: (int)()这个是c语言的强制转换,众所知周int(),这种理解靠谱点Class A{A(int i){}}调用int类型的构造函数然后转换的其实都可以转换。 阅读全文
posted @ 2014-06-27 14:32 zzyoucan 阅读(689) 评论(0) 推荐(0) 编辑
摘要: 我看我们项目创建线程从来不join,detach#include #include #include #include void fun(){ while (true) { std::cout << "hehhe" << std::endl; }}int main()... 阅读全文
posted @ 2014-06-27 12:01 zzyoucan 阅读(182) 评论(0) 推荐(0) 编辑