c++
Civing
除了技术和咖啡一无所有的流浪者
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
About c++(基础篇)
c++ prime 基础篇 数组赋值 int li[] {1,2,3,4,5,6}; //'='可省略 计算数组长度 sizeof(arryName)/sizeof(arry[0]); end(arryName) - begin(arrryName) //需要c++ 11,14支持 字符串空格拼接 cout<<"hello" "wolrd"<<...原创 2018-03-05 10:43:55 · 5778 阅读 · 1 评论 -
C++文件读写详解(ofstream,ifstream,fstream)
http://www.cnblogs.com/hdk1993/p/5853233.html 在看C++编程思想中,每个练习基本都是使用ofstream,ifstream,fstream,以前粗略知道其用法和含义,在看了几位大牛的博文后,进行整理和总结: 这里主要是讨论fstream的内容: include <fstream> ofstream //...转载 2018-02-23 14:48:15 · 289 阅读 · 0 评论
分享