我需要在一个字符串中编写 OR 语句。

huangapple go评论100阅读模式
英文:

I need to Write OR statement within a string

问题

我想编写以下代码:

if (myFunction.equals("This String OR This string")) {
    我的代码
}
无法实现该逻辑
英文:

I want to write if(myFunction.equals("This String OR This string")){
My code
}
Unable to implement the logic.

答案1

得分: 0

你不能按照你在我们的示例中所希望的方式来做那样。你必须这样做:

if(myFunction.equals(firstString) || myFunction.equals(secondString))

英文:

You can't do that as you want it from our example. You have to do it like so:

if(myFunction.equals(firstString) || myFunction.equals(secondString))

huangapple
  • 本文由 发表于 2020年4月9日 03:15:07
  • 转载请务必保留本文链接:https://go.coder-hub.com/61108321.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定