摘要: 打开多个文件 vim a.h a.cpp 多个文件之间切换 :bn//下一个文件 :bp//上一个文件 :b1~n//切换到第几个文件 从文件切换到shell :shell 回到文件 :exit 阅读全文
posted @ 2021-10-04 20:33 Toretto瑞 阅读(32) 评论(0) 推荐(0) 编辑
摘要: thread.h #ifndef _THREAD_H #define _THREAD_H #include<pthread.h> class Thread { public: Thread(); virtual ~Thread(); void Start(); void Join(); privat 阅读全文
posted @ 2021-10-04 17:33 Toretto瑞 阅读(29) 评论(0) 推荐(0) 编辑