04 2023 档案
摘要:1.创建源/etc/yum.repos.d/svn.repo[WandiscoSVN] name=Wandisco SVN Repo baseurl=http://opensource.wandisco.com/centos/basearch/
阅读全文
摘要:1.下载QtCipherSqlitePluginhttps://github.com/devbean/QtCipherSqlitePlugin2.利用QT Creator编译QtCipherSqlitePlugin应用QT Creator打开QtCipherSqlitePlugin.pro,然后利用
阅读全文
摘要:1. string 转换为 numberstd::stoi: string 型变量转换为 int 型变量 std::stol: string 型变量转换为 long 型变量 std::stoul:string 型变量转换为 unsigned long 型变量 std::stoll: string 型
阅读全文
摘要:std::forward : 通常是用于完美转发的,它会将输入的参数原封不动地传递到下一个函数中,这个“原封不动”指的是,如果输入的参数是左值,那么传递给下一个函数的参数的也是左值;如果输入的参数是右值,那么传递给下一个函数的参数的也是右值。std::remove_reference_t : 是一个
阅读全文