有没有办法制作自定义条件语句?或者这是不可能的,我只需将函数放在customConditional(bar){
//run this code
}
内。
例如:
bar
如果1
为text index
,它将执行代码而其他任何数字都不会。
编辑:我想说的是,条件是如何定义的,有没有办法定义另一个?
答案 0 :(得分:3)
不需要这样做,您只需要一个返回true / false语句的方法,然后在if条件中使用它:
示例:
private boolean myOwnMethod(int bar) {
return bar == 1; //this check can be as simple or complex as you need
}
用法:
if (myOwnMethod(bar)) {
//run this code
}