我在试着理解为什么它总是会回来,“它会被阻止的”:
def test = "started" if (test ==~ "deallocated"||"stopped") { println "it will be stopped" }
我是新手,还在学习,我不明白为什么这个IF条件不起作用。
oxcyiej71#
匹配器中的OR应如下所示:
def test = "stopped" if (test ==~ "deallocated|stopped") { println "it will be stopped" }
1条答案
按热度按时间oxcyiej71#
匹配器中的OR应如下所示: