标签: c button comments c99 netbeans-8
对于使用C(C99)的Netbeans 8.1,注释输出按钮使用/*...*/作为其默认样式。
/*...*/
但是,这在尝试评论其他评论时会出现问题,因为评论区块会在遇到第一个*/后立即停止。即
*/
/* /* code here is commented */ this code is not commented */
有没有办法将默认样式切换为//条评论?任何帮助将不胜感激。
//