Java 菜鳥教程

Java 流程控制

Java 數(shù)組

Java 面向對象(I)

Java 面向對象(II)

Java 面向對象(III)

Java 異常處理

Java 列表(List)

Java Queue(隊列)

Java Map集合

Java Set集合

Java 輸入輸出(I/O)

Java Reader/Writer

Java 其他主題

Java程序字符串比較方法

Java 實例大全

在此程序中,您將學習比較Java中的兩個字符串。

示例1:比較兩個字符串

public class CompareStrings {

    public static void main(String[] args) {

        String style = "Bold";
        String style2 = "Bold";

        if(style == style2)
            System.out.println("Equal");
        else
            System.out.println("Not Equal");
    }
}

運行該程序時,輸出為:

Equal

在上面的程序中,我們有兩個字符串style和style2。我們僅使用相等運算符(==)比較兩個字符串,該字符串將值BoldBold進行比較并輸出Equal。

示例2:使用equals()比較兩個字符串

public class CompareStrings {

    public static void main(String[] args) {

        String style = new String("Bold");
        String style2 = new String("Bold");

        if(style.equals(style2))
            System.out.println("Equal");
        else
            System.out.println("Not Equal");
    }
}

運行該程序時,輸出為:

Equal

在上面的程序中,我們有兩個字符串樣式style和style2,它們都包含相同的Bold。

但是,我們使用String構造函數(shù)來創(chuàng)建字符串。 要在Java中比較這些字符串,我們需要使用字符串的equals()方法

您不應該使用==(等號運算符)來比較這些字符串,因為它們會比較字符串的引用,即它們是否是同一對象

另一方面,equals()方法比較的是字符串的值是否相等,而不是對象本身。

如果改為將程序更改為使用相等運算符,則將得到不等于,如下面的程序所示。

示例3:使用==比較兩個字符串對象(不起作用)

public class CompareStrings {

    public static void main(String[] args) {

        String style = new String("Bold");
        String style2 = new String("Bold");

        if(style == style2)
            System.out.println("Equal");
        else
            System.out.println("Not Equal");
    }
}

運行該程序時,輸出為:

Not Equal

示例4:比較兩個字符串的不同方法

這是在Java中可能進行的字符串比較。

public class CompareStrings {

    public static void main(String[] args) {

        String style = new String("Bold");
        String style2 = new String("Bold");

        boolean result = style.equals("Bold"); // true
        System.out.println(result);

        result = style2 == "Bold"; // false
        System.out.println(result);

        result = style == style2; // false
        System.out.println(result);

        result = "Bold" == "Bold"; // true
        System.out.println(result);
    }
}

運行該程序時,輸出為:

true
false
false
true

Java 實例大全

丰满人妻一级特黄a大片,午夜无码免费福利一级,欧美亚洲精品在线,国产婷婷成人久久Av免费高清