c_cpp C和C ++语言细节

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp C和C ++语言细节相关的知识,希望对你有一定的参考价值。

// #include <bits/stdc++.h>
// using namespace std;

int main () {
  // ...
  
  return 0;
}
enum Color {
  RED = 1,
  BLUE = 2,
  GREEN = 3
}

Color my_col = Color::RED;
class Table;  // Include both .h files in both .cpp files.

class House {
  void UseTablePtr(Table* t);
  void UseTableRef(const Table& t);
};

以上是关于c_cpp C和C ++语言细节的主要内容,如果未能解决你的问题,请参考以下文章

必须知道的30个C语言细节知识点

《C++面向对象程序设计》✍千处细节万字总结(建议收藏)

C语言重点难点数据类型常量和变量

[c语言]总结冒泡排序的一些细节

嵌入式C语言

C语言编程新手学C语言时,那些不得不注意的小细节!