c++入门指南

基础
helloworld
#include
using namespace std;
int main()
{
cout << "hello world" << endl; //输出文字 system("pause"); // 方便观察结果 return 0; } 头文件.h 写xxx.h时,防止头文件重复包含 #ifndef AAA #define AAA #endif 命名空间 功能:区分同名变量或函数 创建 :namespace name { code} namespace SortTestHelper{ } 使用方法 using namespace name; name::变量名/函数; :: 作用域运算符 ​ 3. using name::成员; 指定开放某个特定成员 赋值运算符 十进制运算 运算符

c++入门指南最先出现在Python成神之路

版权声明:
作者:ht
链接:https://www.techfm.club/p/10556.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>