c++ 关于注释的故事

注释用于向读取代码的人指示某些内容。注释被编译器视为空白,不会改变代码的实际含义。C 语言中有两种注释语法,原始的/* */和稍微新一点的//。一些文档系统如Doxygen使用特殊格式的注释来帮助生成代码的文档。

使用预处理进行注释

还可以使用预处理器指令 # if 0# endf“注释掉”大块代码。当代码包含多行注释(否则不会嵌套)时,这非常有用
如下

#if 0 /* Starts the "comment", anything from here on is removed by preprocessor */
/* A large amount of code with multi-line comments */
int foo()
{
/* lots of code */
...
/* ... some comment describing the if statement ... */
if (someTest) {
/* some more comments */
return 1;
}
return 0;
}
#endif /* 0 */

/**/只认第一个*/

/* this comment is on its own line */
if (x && y) { /*this comment is at the end of a line */
if ((complexCondition1) /* this comment is within a line of code */
&& (complexCondition2)) {
/* this comment is within an if, on its own line */
}
}

'//'请注意??\

int main() {
    // Why did I do this ??/
    unsigned char a = 5;              // 00000101
    unsigned char b = 9;              // 00001001
    printf("a & b = %d\n", a & b);    // 00000001
    printf("a | b = %d\n", a | b);    // 00001101
    printf("a ^ b = %d\n", a ^ b);    // 00001100
    printf("~a = %d\n", a = ~a);      // 11111010
    printf("b << 1 = %d\n", b << 1);  // 00010010
    printf("b >> 1 = %d\n", b >> 1);  // 00000100
    int x = 20;
    return 0;
}

这会导致编译错误

<source>: In function 'int main()':
<source>:22:28: error: 'a' was not declared in this scope
   22 |     printf("a & b = %d\n", a & b);    // 00000001
      |                            ^

??/实际上是\的手写表示法,\是行延续符号。这意味着编译器认为下一行是当前行的延续,即注释的延续。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

-西门吹雪

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值