我是一个相当新的程序员,作为我正在做的几个项目的一部分,我正在使用子字符串。在所有这些中,我都遇到了 if 语句的问题。假设我有两个变量,一个是其他字符串的子字符串,另一个应该与第一个子字符串等效。如果我尝试在 if 语句中检查它们是否相等(它们应该是),它会返回 false 和 == 检查。这里有一些代码来演示。
public class Substringproblem{
static void method(){
String random="somestring";
String randomsubstring=random.substring(0,3);
String should_be_randomsubstring="som";
if(randomsubstring==should_be_randomsubstring){
System.out.println("Success");
}else{
System.out.println("Failure");
System.out.println(randomsubstring);
}
}
public static void main(String[] args) {
method();
}
}
我觉得我错过了一些非常明显的东西,但我一直在寻找一些东西,但没有发现任何像这样的东西。帮助将不胜感激。