Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道是否可以编辑 NetBeans 自动完成注释标记的方式。
想改变:
/* * comment */
到:
是否可以?
真的不可能完全按照您的意愿行事。我发现的最好的事情是:
工具 -> 选项 -> 编辑器 选择Java和注释
工具 -> 选项 -> 编辑器
选择Java和注释
然后解开Add Leading Star
Add Leading Star
现在,当您键入 : 时/**,它将扩展为:
/**
/** */
这是您想要的对齐方式,但您必须自己设置*,它们不再自动添加,但是当您输入 Enter 时光标将对齐。
*