字串類String類的判斷功能
阿新 • • 發佈:2019-01-09
StringDemo.java
/* * Object:是類層級結構中的根類,所有的類都直接或間接的繼承自該類. * 如果一個方法的形式引數是Object,那麼這裡我們就可以傳遞它的任意的子類物件. * * String類的判斷功能 * boolean equals(Object obj):比較字串的內容是否相同 * boolean equalsIgnoreCase(String str):比較字串的內容是否相同,忽略大小寫 * boolean startsWith(String str):判斷字串物件是否以指定的str開頭 * boolean endsWith(String str):判斷字串物件是否以指定的str結尾*/ public class StringDemo { public static void main(String[] args) { //建立字串物件(直接賦值的方式) String s1="hello"; String s2="hello"; String s3="Hello"; System.out.println(s1.equals(s2)); System.out.println(s1.equals(s3)); System.out.println("--------"); System.out.println(s1.equalsIgnoreCase(s2)); System.out.println(s1.equalsIgnoreCase(s3)); System.out.println(s1.startsWith("he")); System.out.println(s1.endsWith("llo")); } }