标签:表达 cte 对象 ima std expr 输入 运算 nbsp
今天完成的事情:
【主线】
1、熟悉cpp文件的编译运行
2、初步认识输入输出
值得关注的地方是: 流的概念。endl除了结束当前行外,还有刷新缓冲区的功能。以及对
输入输出运算符(<< 、>>)所构成的表达式(expression)的重新理解:运算结果就是左侧对象!(表达式的值)。
【支线】
明天计划的事情:无
遇到的问题:
1、某一个编译错误:error: ‘endln‘ is not a member of ‘std‘
2、形如这样的程序是错误的
std::cout << "The sum of " << v1; << " and " << v2; << " is " << v1 + v2 << std::endln;
因为根本编译不出来
error: expected primary-expression before ‘<<‘ token
意思是表达式缺少前操作数(我猜的。。)
收获: 无
标签:表达 cte 对象 ima std expr 输入 运算 nbsp
原文地址:http://www.cnblogs.com/xkxf/p/6259728.html