1、// 双斜杠 单行注释 偏c++风格
// this is test function
int Test()
{
int width = 10;
int height = 10; // declaration and initialize
// char name = 'a';
return 0;
}
双斜杠所在行的所在位置后面的文本 都将注释掉;
2、/* */ 多行注释 偏 c 风格
对于几行的代码用双斜杠注释还可以,如果注释100,1000行,那是很麻烦的,可以使用多注释
具体用法: 在想要注释的代码前使用“ /* ”开头 ,代码注释结尾处使用 “ */ ” 结束
/*
int Test(){
int a = 0;
char b = 'a';
short c = 123;
return 0;
} */
3、预处理注释
#if 0 #endif
#if 0 #else #endif
#if 0
int Test()
{
int a = 2;
char b = 3;
}
#endif