众所周知,C++ Primer Plus是C++的经典教材,技术大牛的必备读物,今天,笔者就来和大家分享《C++ Primer Plus 第六版 中文版》的学习成果。
接下来,我们就正式进入学习。
首先,我们看看本书的第一个程序:传递简单信息
// myfirst.cpp -- displays a message
#include // a PREPROCESSOR directive 一个预处理器编译指令
int main() // function header 函数头
{ // start of function body 开始函数体
using namespace std; // make definitions visible 编译指令
cout << "Come up and C++ me some time."; // message 输出一条信息
cout << endl; // start a new line 换行
cout << "You won't regret it" << endl; // more output 更多输出
return 0; // terminate main() 终止主函数
} // end of function body 结束函数体
运行上述程序后,即可输出:
Come up and C++ me some time.
You won't regret it
该示例中,出现了以下几种元素。
注释:由前缀//标识,编译时系统自动跳过 预处理器编译指令 #include 函数头:int main() 编译指令:using spacename 函数体:用{}括起来 显示消息(输出)的cout语句 结束main()函数的语句好了,今天的学习就先到这里,有关myfist.cpp的详细介绍,我们下期继续学习。