有没有办法在已经评论的部分上使用块注释?

时间:2012-09-17 16:20:53

标签: objective-c xcode comments

我知道你可以像这样注释掉整段代码:

/*
line of code
line of code
line of code
*/

但是如果你在试图评论的代码中已经有一个/ * ... * /部分,则注释块的* / end将关闭我想要创建的“更大”注释块。

示例:

/* wanting to comment this big section out
line of code
line of code
line of code
line of code
line of code
line of code
/* this section was already commented out before
line of code
line of code
line of code
*/ this section was already commented out before
line of code
line of code
line of code
line of code
line of code
*/ this last part doesn't get commented out, because the comment stops at previous */

显然这不是一个大问题,它并没有阻止我让应用程序正常工作,但我只是想知道是否有某种方法可以评论更大的代码段,即使有已经是该代码中的注释块。

3 个答案:

答案 0 :(得分:8)

突出显示您要注释的代码,然后按“Command”+“/”

答案 1 :(得分:4)

为避免出现这种情况,请始终使用//进行评论,并使用Xcode快捷方式评论代码块。

快捷方式为cmd + /

答案 2 :(得分:0)

如果我在代码中看到它,我会皱眉,但你可以做到

#if 0

...code...

#endif