次のように、コードのセクション全体をコメントアウトできることを知っています。
/*
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 */
明らかに、これは大したことではありません。アプリが正常に動作するのを妨げているわけではありませんが、既にコメントがある場合でも、コードのより大きなセクションをコメントアウトする方法があるかどうか疑問に思っていますそのコードのブロック。