摘要:
记录一下,Qt 使用 MSVC编译器, 对 UTF8 带 和不带 BOM ,会导致编码问题。很隐蔽。 待更新 阅读全文
摘要:
git rm --cached readme1.txt 删除readme1.txt的跟踪,并保留在本地。 git rm --f readme1.txt 删除readme1.txt的跟踪,并且删除本地文件。 转自:https://www.cnblogs.com/zhuchenglin/p/712838 阅读全文
摘要:
#include <iomanip> #include <iostream> #include "Eigen/Core" int main() { using v = Eigen::Matrix<double, 3, 1>; // rows 3; cols 1 using T = Eigen::Ma 阅读全文
摘要:
转自:https://blog.csdn.net/zfjBIT/article/details/93972484 #include <iomanip> std::cout << std::setiosflags(std::ios::fixed) << std::setiosflags(std::io 阅读全文
摘要:
用正则表达式, 在整个项目中查找 b*[^:b#/]+.*$ 最后在查找结果窗口底部会显示匹配的行数 阅读全文
摘要:
直接上代码 #include <iostream> class foo { public: foo() { std::cout << "Hello World!\n"; } ~foo() { std::cout << "Good Bye!\n"; } }; int main() { foo a; } 阅读全文
摘要:
转自: https://blog.csdn.net/m0_51955470/article/details/117960694 #include <iostream> using namespace std; //template<typename R,typename T,typename U> 阅读全文
摘要:
no matching host key type found. Their offer: ssh-rsa .ssh 目录新建一文件 config 内容: HostKeyAlgorithms ssh-rsaPubkeyAcceptedKeyTypes ssh-rsa 阅读全文
摘要:
使用vcctor访问数据,如果使用下标 [n] 访问,如果n 大于实际的索引,并不会抛出异常。 所以正规的访问方式,还是使用 .at(n) 的方法。 阅读全文