忐忑朋友

文章
5
资源
0
加入时间
2年10月18天

no match for 'operator+' (operand types are 'basic_string' and 'int')

之前在写代码的时候都没注意过这个问题,我想将一个数字变成字符接在一个字符串后面,如下所示:int main(){ string res = "doudou"; res = res + ('0' + 1); cout << res << endl; return 0;}但是编译发生错误:no match for 'operator...

EPPlus.Core导入导出Excel xlsx 文件

网上找了很多方法,感觉这是最简约直接的。ASP.NET Core 使用EPPlus.Core导入导出Excel xlsx 文件,EPPlus.Core支持Excel 2007/2010 xlsx文件导入导出,可以运行在Windows, Linux和Mac。EPPlus.Core 是基于EPPlus 更改而来,在Linux 下需要安装libgdiplus 。EPPlus:http://e...

Windows命令: net与sc的区别

Windows命令: net与sc的区别! 二者最重要的区别在于 `net` 是一种同步的管理方式,`sc`是一种异步的管理方式。

程序没问题,运行报错:Directory not empty

程序没问题,运行报错:Directory not empty解决:位于/Users/你电脑名/Library/Developer/Xcode/DerivedData  下的缓存文件占很大的缓存空间,如果长时间不删除xcode下的缓存文件,就会导致硬盘空间越来越小直到Directory not empty。删除了缓存文件再运行就不会再报错。