找到 34423 篇文章 关于 编程
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 = ... 阅读更多
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); ... 阅读更多
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
460 浏览量
您可以使用 compareTo() 方法、equals() 方法或 == 运算符在 Java 中比较两个字符串。compareTo() 方法比较两个字符串。比较基于字符串中每个字符的 Unicode 值。此 String 对象表示的字符序列与参数字符串表示的字符序列进行字典顺序比较。如果此 String 对象在字典顺序上先于参数字符串,则结果为负整数。如果此 String 对象在字典顺序上后于参数字符串,则结果为正整数。如果字符串相等,则结果为零,当且仅当 equals(Object) 方法返回 true 时,compareTo 返回 0。 ... 阅读更多
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 = ... 阅读更多
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 ... 阅读更多
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
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 在 ... 阅读更多
3K+ 浏览量
您可以使用 equals() 方法或 compareTo() 方法比较两个字符串。其中,equals() 方法将此字符串与指定的对象进行比较。compareTo() 方法按字典顺序比较两个字符串。比较基于字符串中每个字符的 Unicode 值。这两种方法都根据大小写比较给定的字符串,即大小写不同的字符串被视为不同。示例以下示例演示了使用 equals() 方法比较两个字符串。在线演示public class Sample{ public static void main(String args[]) { String str = "Hello World"; String anotherString = "hello world"; ... 阅读更多