Java - String equals() 方法



Java String equals() 方法用于检查当前字符串是否等于指定对象。如果字符串实例包含相同顺序的相同字符,则返回 true;否则返回 false。

equals() 方法接受一个可比较的对象作为参数。在比较或检查字符串是否等于指定对象时,它不会抛出任何异常。此方法返回布尔值。

语法

以下是Java String equals() 方法的语法:

public boolean equals(Object anObject)

参数

  • anObject − 这是与该字符串进行比较的对象。

返回值

如果给定对象表示一个与该字符串等效的字符串,则此方法返回 true,否则返回 false。

使用相同字符串字面量检查字符串对象示例

如果给定的字符串值与指定的对象值相同,则 equals() 方法返回true

在下面的程序中,我们使用值“Java”实例化 String 类。使用equals() 方法,我们尝试确定给定的字符串是否等于指定的对象“Java”

package com.tutorialspoint;

public class Equal {
   public static void main(String[] args) {
      
      //instantiate a String class
      String str = new String("Java");
      
      //initialize the string object
      String obj = "Java";
      System.out.println("The given string is: " + str);
      System.out.println("The object is: " + obj);
      
      //using the equals() method
      System.out.println("The given string is equal to the specified object or not? " + str.equals(obj));
   }
}

输出

执行上述程序后,将产生以下结果:

The given string is: Java
The object is: Java
The given string is equal to the specified object or not? true

使用不同字符串字面量检查字符串对象示例

如果给定的字符串值与指定的对象值不同,则 equals() 方法返回false

在下面的示例中,我们创建一个值为“HelloWorld”的字符串字面量。使用equals() 方法,我们尝试确定给定的字符串是否等于指定的对象“Hello”

package com.tutorialspoint;

public class Equal {
   public static void main(String[] args) {
      
      //create a String literal
      String str = "HelloWorld";
      
      //initialize the string object
      String obj = "Hello";
      System.out.println("The given string is: " + str);
      System.out.println("The object is: " + obj);
      
      //using the equals() method
      System.out.println("The given string is equal to the specified object or not? " + str.equals(obj));
   }
}

输出

以下是上述程序的输出:

The given string is: HelloWorld
The object is: Hello
The given string is equal to the specified object or not? false

使用相同字符串字面量检查字符串字面量示例

使用条件语句来确定给定的字符串是否等于指定的对象。

在这个程序中,我们创建一个值为“TutorialsPoint”的字符串。使用equals() 方法和条件语句,我们尝试检查给定的字符串是否等于指定的对象“Java”

package com.tutorialspoint;

public class Equal {
   public static void main(String[] args) {
      
      //create a String literal
      String str = "TutorialsPoint";
      
      //initialize the string object
      String obj = "Java";
      System.out.println("The given string is: " + str);
      System.out.println("The object is: " + obj);
      
      //using the equals() method
      boolean bool = str.equals(obj);
      if(bool) {
         System.out.println("The given string is equal to the specified object.");
      } else {
         System.out.println("The given string is not equal to the specified object.");
      }
   }
}

输出

上述程序产生以下输出:

The given string is: TutorialsPoint
The object is: Java
The given string is not equal to the specified object.

使用不同字符串字面量检查字符串字面量示例

如果给定的字符串值与对象值相同,但大小写不同,则此方法返回false

在这个程序中,我们创建一个值为“TutorialsPoint”的字符串字面量。使用equals() 方法,我们尝试检查给定的字符串是否等于指定的对象“tutorialspoint”。由于该方法区分大小写,即使值相同,此方法也会返回 false。

package com.tutorialspoint;

public class Equal {
   public static void main(String[] args) {
      
      //create a String literal
      String str = "TutorialsPoint";
      
      //initialize the string object
      String obj = "tutorialspoint";
      System.out.println("The given string is: " + str);
      System.out.println("The object is: " + obj);
      
      //using the equals() method
      boolean bool = str.equals(obj);
      System.out.println("The equals() method returns " + bool);
      if(bool) {
         System.out.println("The given string is equal to the specified object.");
      } else {
         System.out.println("The given string is not equal to the specified object.");
      }
   }
}

输出

执行上述程序后,它会生成以下输出:

The given string is: TutorialsPoint
The object is: tutorialspoint
The equals() method returns false
The given string is not equal to the specified object.
java_lang_string.htm
广告