- 博客(6)
- 收藏
- 关注
原创 Github Pages With Angular + Github Action
https://github.com/zomixi/ng-demo/blob/master/.github/workflows/update-github-pages.yml
2019-09-27 10:48:46 203
原创 关于ES6的拓展运算符进行深拷贝
很多博客说ES6的拓展运算符…也可进行深拷贝对象,但其实是有坑的:它只能深拷贝一层。类似于这样的对象// value 只能是基本数据类型,比如String,Number,Booleanlet oldObj = { key :value }// 例如 person = { name : '张三' }是可以使用拓展运算符深拷贝的。但是,当对象是这样的时候:// value是引用类型,比...
2018-11-14 11:59:51 7809
原创 CString字符串中数字的提取
假设CString类型的字符串“192.168.1.1”void main(){ CString str = "192.168.1.1"; int a,b,c,d; int pos; pos = str.Find('.'); CString temp; temp = str.Left(pos); a = atoi(temp); str = str.Right(str.Get...
2018-03-16 16:56:09 5863
原创 使用CStdioFile::ReadString来逐行读取文件
ReadString本身就是一次读取一行,非常方便。直接上代码:{ CStdioFile file; CString str; file.Open("file.txt",CFile::modeRead); while(file.ReadString(str)) { //控件写入数据 //SetDlgItemText(IDC_EDIT...
2018-03-15 17:19:52 14272 1
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人