1

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

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

但是,如果您尝试注释的代码中已经有 /* ... */ 部分,那么注释块的 */ 结尾将关闭我正在尝试创建的“更大”注释块。

例子:

/* 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 */

显然这没什么大不了的,它并没有阻止我让应用程序正常工作,但我只是想知道是否有某种方式可以注释掉更大的代码部分,即使已经有注释该代码中的块。

4

3 回答 3

8

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

于 2012-09-17T16:22:40.437 回答
4

为避免这种情况,请始终使用//for 注释并使用 Xcode 快捷方式来注释代码块。

捷径是cmd + /

于 2012-09-17T16:24:47.367 回答
0

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

#if 0

...code...

#endif
于 2012-09-17T16:27:21.040 回答