
C++
Lead_H
这个作者很懒,什么都没留下…
展开
-
fstream中ios::mode汇总一览表
主要是给自己做个笔记,方便查询。标志位表示输入输出方式 成员常量 全拼 表示内容 in input 读文件 out output 写文件 ate at the end 从文件末尾开始 binary binary 以二进制模式打开,而不是txt模式,记住这个非常关键,如果模式不对读出来的数据可能出现很多意想不到的...原创 2019-04-24 16:16:58 · 852 阅读 · 0 评论 -
C++ LINUX系统cmake编译报'sqrtf’ is not a member of ‘std’错误
今天自己在系统上进行linux cmake编译的时候发现报'sqrtf’ is not a member of ‘std’错误。网上找了好久没找到答案,这里写出来共享一下。解决办法: 去掉 ‘sqrtf’前面'std'即可。...原创 2019-08-01 16:49:45 · 3251 阅读 · 0 评论 -
tiny-cnn编译从V14回退到V10遇到的坎坷
记录一下将tiny-cnn框架从V14版本回退到V10路上遇到的坎坷以及解决方案:1.Specified platform toolset (v110) is not installed在configuration properties->General->Platform Toolset中选择比较低的版本或者本地已经安装的就可以2.error : Eleme...原创 2019-08-12 19:23:41 · 284 阅读 · 0 评论