08 2018 档案
摘要:"CRT Library Features" The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com. The latest version of t
阅读全文
摘要:无法解析的外部符号 _WinMain@16,该符号在函数 ___tmainCRTStartup 中被引用 出现原因: 连接程序在负责连接可执行程序时,选择相应的c/c++运行时启动函数。如果设定了/subsystem:windows连接程序开关,那么连接程序会试图寻找WinMain或wWinMain
阅读全文
摘要:这个哥们也遇到一样的问题 "CUDA 9.1/9.2 与 Visual Studio 2017 (VS2017 15.6.4) 的不兼容问题" 错误有显示 我看到默认VS工程中是 1.需要【win SDK 版本】10.0.15063.0 但是这个版本我并没有,所以在VS2017 Install 中
阅读全文
摘要:"ARM交叉编译工具链" 为什么要用交叉编译器? arm交叉编译器 分类和说明: 从授权上,分为免费授权版和付费授权版。 免费版目前有三大主流工具商提供, 1. GNU(提供源码,自行编译制作) 2. Codesourcery 3. Linora (提供源码,和已经编译好的release binra
阅读全文
摘要:无论windows,linux 所有的库 ,dlib,opencv 通过cmake gui 设置好静态库, 动态库,和其他各个选项 Tips: cmake 优先级用cmake gui,因为命令太多,容易敲错!!!!! cmake 默认是制作动态库.so, 若需要制作静态库 1.BUILD_SHARE
阅读全文
摘要:http://www.cnblogs.com/lidp/archive/2010/03/02/1696447.html 一般下载一个网站目录 wget 下载整个网站,或者特定目录 需要下载某个目录下面的所有文件。命令如下 wget c r np k L p www.xxx.org/pub/path/
阅读全文
摘要:RSA加密算法 C++实现 https://www.cnblogs.com/Silenceneo xw/p/6718334.html 非对称加密技术 RSA算法数学原理分析 https://www.cnblogs.com/tinyxiong/p/7842839.html dlib bigint的实现
阅读全文
摘要:https://msdn.microsoft.com/en us/library/f6xx1b1z.aspx https://www.cnblogs.com/runningRain/p/5674833.html
阅读全文
摘要:```cpp std::string data = "This is a sample string."; // convert string to upper case std::for_each(data.begin(), data.end(), "" { c = ::toupper(c); }
阅读全文
摘要:https://blog.csdn.net/wudishine/article/details/42466831 MD5.h MD5.cpp =========== Poco库 获取文件MD5 调用 std::string strMD5; std::ifstream f1(filename, std
阅读全文
摘要:我遇到的情况是c++ stl include include 在stdafx.h 和 .cpp 重复了,所以出现此问题, 所以把依赖全放到一起了。 www.cnblogs.com/A Song/archive/2012/03/23/2413782.html
阅读全文
摘要:http://www.cplusplus.com/reference/sstream/ostringstream/ https://en.cppreference.com/w/cpp/io/basic_stringstream https://www.cnblogs.com/hdk1993/p/58
阅读全文
摘要:Windows WMIC命令使用详解(附实例) https://blog.csdn.net/aflyeaglenku/article/details/77878525 ============== 第一次执行WMIC命令时,Windows首先要安装WMIC,然后显示出WMIC的命令行提示符。在WMI
阅读全文
摘要:https://blog.csdn.net/enweitech/article/details/51982114 在CMD和Powershell中 使用WMIC 先决条件: a. 启动Windows Management Instrumentation服务,开放TCP135端口。 b. 本地安全策略
阅读全文