如何初始化和比较字符串?
以下示例通过字符串类的 str compareTo (string)、str compareToIgnoreCase(string) 和 str compareTo(object string) 比较两个字符串,并返回比较的字符串中第一个奇数字符的 ASCII 差。
示例
public class StringCompareEmp{ public static void main(String args[]) { String str = "Hello World"; String anotherString = "hello world"; Object objStr = str; System.out.println( str.compareTo(anotherString) ); System.out.println( str.compareToIgnoreCase(anotherString) ); System.out.println( str.compareTo(objStr.toString())); } }
输出
以上代码示例将生成以下结果。
-32 0 0
通过 equals() 比较字符串
此方法将此字符串与此指定对象进行比较。当且仅当参数不为 null 且为表示与此对象相同的字符序列的字符串对象时,结果才为 true。
示例
public class StringCompareequl{ 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 StringCompareequl{ public static void main(String []args) { String s1 = "tutorialspoint"; String s2 = "tutorialspoint"; String s3 = new String ("Tutorials Point"); System.out.println(s1 == s2); System.out.println(s2 == s3); } }
输出
以上代码示例将生成以下结果。
true false
广告