找到 34423 篇文章 相关编程

如何在 Java 中检查两个字符串是否相等?

Anjana
更新于 2020-02-26 06:39:51

15K+ 浏览量

您可以使用 equals() 方法在 Java 中检查两个字符串是否相等。此方法将此字符串与指定的对象进行比较。当且仅当参数不为 null 且是表示与此对象相同字符序列的 String 对象时,结果才为 true。示例import java.lang.* public class StringDemo {    public static void main(String[] args) {       String str1 = "Tutorialspoint";       String str2 = "Tutorialspoint";       String str3 = "Hi";             // 检查相等性       boolean retval1 = ... 阅读更多

如何在 Java 中使用 equals() 和 equalsIgnoreCase()。

Manikanth Mani
更新于 2020-02-26 06:37:53

307 浏览量

equals() 方法此方法将此字符串与指定的对象进行比较。当且仅当参数不为 null 且是表示与此对象相同字符序列的 String 对象时,结果才为 true。示例import java.lang.*; public class StringDemo {    public static void main(String[] args) {       String str1 = "sachin tendulkar";       String str2 = "amrood admin";       String str3 = "amrood admin";             // 检查相等性       boolean retval1 = str2.equals(str1);       boolean retval2 = str2.equals(str3);   ... 阅读更多

compareTo 在 Java 中的作用是什么?

Arjun Thakur
更新于 2020-02-26 07:07:03

129 浏览量

Java 中的 compareTo() 方法按字典顺序比较两个字符串。示例实时演示public class Test {    public static void main(String args[]) {       String str1 = "Strings are immutable";       String str2 = new String("Strings are immutable");       String str3 = new String("Integers are not immutable");       int result = str1.compareTo( str2 );       System.out.println(result);       result = str2.compareTo( str3 );       System.out.println(result);    } }输出0 10

如何在 Java 中比较字符串?

Fendadis John
更新于 2020-02-26 08:11:55

460 浏览量

您可以使用 compareTo() 方法、equals() 方法或 == 运算符在 Java 中比较两个字符串。compareTo() 方法比较两个字符串。比较基于字符串中每个字符的 Unicode 值。此 String 对象表示的字符序列与参数字符串表示的字符序列按字典顺序进行比较。如果此 String 对象按字典顺序在参数字符串之前,则结果为负整数。如果此 String 对象按字典顺序在参数字符串之后,则结果为正整数。如果字符串相等,则结果为零,当且仅当 equals(Object) 方法会... 阅读更多

如何在 Java 中比较字符串相等性?

Ayyan
更新于 2020-02-26 06:30:47

271 浏览量

您可以使用 equals() 方法在 Java 中检查两个字符串是否相等。此方法将此字符串与指定的对象进行比较。当且仅当参数不为 null 且是表示与此对象相同字符序列的 String 对象时,结果才为 true。示例import java.lang.* public class StringDemo {    public static void main(String[] args) {       String str1 = "Tutorialspoint";       String str2 = "Tutorialspoint";       String str3 = "Hi";             // 检查相等性       boolean retval1 = ... 阅读更多

Java 字符串比较,==、equals、matches、compareTo() 之间的区别。

Akshaya Akki
更新于 2020-02-26 06:28:55

617 浏览量

equals() 方法将此字符串与指定的对象进行比较。当且仅当参数不为 null 且是表示与此对象相同字符序列的 String 对象时,结果才为 true。示例public class Sample{    public static void main(String []args){       String s1 = "tutorialspoint";       String s2 = "tutorialspoint";       String s3 = new String ("Tutorials Point");       System.out.println(s1.equals(s2));       System.out.println(s2.equals(s3));    } }输出true false您还可以使用 == 运算符比较两个字符串。但是,它比较的是给定变量的引用而不是值。示例public class ... 阅读更多

如何在 Java 中进行不区分大小写的字符串比较

George John
更新于 2020-02-26 07:04:22

2K+ 浏览量

equalsIgnoreCase() 方法将此字符串与指定的对象进行比较。当且仅当参数不为 null 且是表示与此对象相同字符序列的 String 对象时,结果才为 true。示例实时演示public class Sample { public static void main(String args[]) { String Str1 = new String("This is really not immutable!!"); String Str2 = Str1; String Str3 = new String("THIS IS REALLY NOT IMMUTABLE!!"); boolean retVal; retVal = Str1.equalsIgnoreCase(Str2); System.out.println("Returned Value = " + retVal ); retVal = Str1.equalsIgnoreCase( Str3 ); System.out.println("Returned Value = " + retVal ); } }输出Returned Value = true Returned Value = true

Java 中的 concat()、replace() 和 trim() 字符串。

Manikanth Mani
更新于 2020-02-26 06:27:31

1K+ 浏览量

String 类的 concat() 方法将一个字符串附加到另一个字符串的末尾。该方法返回一个字符串,其值为传递到方法中的字符串,附加到用于调用此方法的字符串的末尾。示例public class Test {    public static void main(String args[]) {       String s = "Strings are immutable";       s = s.concat(" all the time");       System.out.println(s);    } }输出Strings are immutable all the time此 String 类的 replace() 方法返回一个新字符串,该字符串是通过替换 oldChar 在... 阅读更多

Java 中区分大小写的字符串比较。

Moumita
更新于 2020-02-26 06:45:45

3K+ 浏览量

您可以使用 equals() 方法或 compareTo() 方法比较两个字符串。其中,equals() 方法将此字符串与指定的对象进行比较。compareTo() 方法按字典顺序比较两个字符串。比较基于字符串中每个字符的 Unicode 值。这两种方法都根据大小写比较给定的字符串,即不同大小写的字符串被视为不同的字符串。示例以下示例演示了使用 equals() 方法比较两个字符串。实时演示public class Sample{    public static void main(String args[]) {       String str = "Hello World";       String anotherString = "hello world";     ... 阅读更多

使用 concat() 方法进行字符串连接。

Alankritha Ammu
更新于 2020-02-26 05:57:18

164 浏览量

您可以使用 String 类的 concat() 方法连接两个字符串。此类将指定的字符串连接到此字符串的末尾。示例实时演示public class Test {    public static void main(String args[]){       String str1 = "Krishna";       String str2 = "Kasyap";       System.out.println(str1.concat(str2));    } }输出krishnaKasyap

广告