概述
C++ 基础
输出
cout << "Hello CMake." << endl;
C与C++兼容
c++中调用c代码中方法
#pragma once
#ifdef _cplusplus
extern "C" {
#endif
void test(int x, int y);
#ifdef __cplusplus
}
#endif
引用类型
void change(int&) {
j = 11;
}
int i = 10;
// 10这个内存地址 给了个别名 j
int& j = i;
change(j);
cout << j << endl;
字符串
// C 中
char str1[6] = {'h', 'e', 'l', '