NetBeans:如何自动将if-else if语句转换为switch?

时间:2017-01-20 13:06:55

标签: java netbeans

问题很简单:我想通过快捷方式将if-else语句转换为switch,或者从Netbeans的菜单中进行访问。

有时警告信号上没有显示从那里改变。

1 个答案:

答案 0 :(得分:1)

您需要使用开关"启用提示"替换ifs链。在选项对话框中:

enter image description here

一旦启用,你将会在所有符合条件的声明旁边得到一个黄色的小灯泡:

enter image description here

如果您点击灯泡,您可以选择将ifs转换为开关:

enter image description here

然后代码将更改为:

enter image description here