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