到目前为止,我在Google上搜索过但没有成功。是否可以禁用多行'if'语句到单行的格式。我编写PHP代码,并没有测试这是否发生在Netbeans中的其他语言。
原件:
if ($checkOne->very_long_function()
|| $checkTwo->you_dont_want_this()
|| $checkThree->in_one_line())
在Netbeans的默认格式之后,语句在一行
if ($checkOne->very_long_function() || $checkTwo->you_dont_want_this() || $checkThree->in_one_line())
感谢您的帮助。
答案 0 :(得分:2)
转到
"Tools" -> "Options" -> "Editor" -> "Formatting"
选择类别" Wrapping"并向下滚动到"包裹二进制运算符"并检查它。
Netbeans将不再更改多行if语句。