摘要: https://www.cnblogs.com/hamsterPP/p/5184491.html tortoise git 密钥配置 https://blog.csdn.net/qq_32614411/article/details/84957759 阅读全文
posted @ 2019-08-26 17:53 Truman001 阅读(247) 评论(0) 推荐(0) 编辑
摘要: emit函数之后的内容的执行顺序与信号与槽的连接方式有关。如果需要立即执行emit之后的函数,就需要设置为Qt::QueuedConnection,如果要立即执行槽函数,就需要设置为Qt::DirectConnection。 https://blog.csdn.net/itas109/article 阅读全文
posted @ 2019-08-26 16:57 Truman001 阅读(467) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #include using namespace std; //C++11之前 bool FileExist1(const string &filename) { ifstream f(filename.c_str()); return f.good();//检测流的状态是否正常。当错误的状态flags (eofbit,... 阅读全文
posted @ 2019-08-26 16:35 Truman001 阅读(3083) 评论(0) 推荐(0) 编辑
摘要: windows+W快捷键 阅读全文
posted @ 2019-08-26 15:16 Truman001 阅读(147) 评论(0) 推荐(0) 编辑
摘要: forever{ ... } //等同于for( ; ; ) 阅读全文
posted @ 2019-08-26 12:56 Truman001 阅读(819) 评论(0) 推荐(0) 编辑