logo

Java Character Compare() メソッド

Character クラスの Compare(char x, char y) メソッドは、2 つの char 値を数値的に比較するために使用されます。返される最終値は、次のように返される値と似ています。

 Character.valueoOf(x).compareTo(Character.valueOf(y)) 

構文

 public static intcompare(char x, char y) 

パラメータ

上記のメソッドには 2 つのパラメータが必要です。

60 のうち 10 パーセント
  • char x 比較する最初の文字です
  • char y は比較する 2 番目の文字です

戻り値

文字クラスのcompare(char x, char y)メソッドは次の値を返します。

int parseint
  • x==y の場合は値 0
  • x の場合は 0 より小さい値
  • x>y の場合は 0 より大きい値。

例1

 public class JavaCharacterCompareExample1 { public static void main(String[] args) { char firstValue = 'A'; char secondValue = 'B'; // compare the first char to the second int compareOneTwo = Character.compare(firstValue, secondValue); if (compareOneTwo> 0) { System.out.println('First value is greater than second value'); } else { System.err.println('First value is less than second value.'); } } } 
今すぐテストしてください

出力:

 First value is less than the second value. 

例 2

 public class JavaCharacterCompareExample2{ public static void main(String[] args) { char firstValue = &apos;1&apos;; char secondValue = &apos;2&apos;; // compare the first char to the second int comp = Character.compare(firstValue, secondValue); if (comp<0) 1 { system.err.println('value is greater than the value 2.'); } else less second value2.'); < pre> <span> Test it Now </span> <p> <strong>Output:</strong> </p> <pre> Value 1 is greater than the value 2. </pre> <h2>Example 3</h2> <pre> public class JavaCharacterCompareExample3 { public static void main(String[] args) { char firstVal = &apos;J&apos;; char secondVal =&apos;J&apos;; char thirdVal = &apos;M&apos;; // compare the first char to the second CHAR int compareOneTwo = Character.compare(firstVal, secondVal); // compare the first char to the third int compareOneThree = Character.compare(firstVal, thirdVal); if (compareOneTwo == 0) { System.out.println(&apos;First and second values are equal.&apos;); } else if (compareOneTwo&gt; 0) { System.out.println(&apos;First value is greater than the second value.&apos;); } else { System.out.println(&apos;First value is less than the second value.&apos;); } if (compareOneThree == 0) { System.out.println(&apos;First and third value are equal.&apos;); } else if (compareOneTwo&gt; 0) { System.out.println(&apos;First value is greater than the third value.&apos;); } else { System.out.println(&apos;First value is less than the third value.&apos;); } } } </pre> <span> Test it Now </span> <p> <strong>Output:</strong> </p> <pre> First and second values are equal. First value is less than the third value. </pre></0)>

例 3

 public class JavaCharacterCompareExample3 { public static void main(String[] args) { char firstVal = &apos;J&apos;; char secondVal =&apos;J&apos;; char thirdVal = &apos;M&apos;; // compare the first char to the second CHAR int compareOneTwo = Character.compare(firstVal, secondVal); // compare the first char to the third int compareOneThree = Character.compare(firstVal, thirdVal); if (compareOneTwo == 0) { System.out.println(&apos;First and second values are equal.&apos;); } else if (compareOneTwo&gt; 0) { System.out.println(&apos;First value is greater than the second value.&apos;); } else { System.out.println(&apos;First value is less than the second value.&apos;); } if (compareOneThree == 0) { System.out.println(&apos;First and third value are equal.&apos;); } else if (compareOneTwo&gt; 0) { System.out.println(&apos;First value is greater than the third value.&apos;); } else { System.out.println(&apos;First value is less than the third value.&apos;); } } } 
今すぐテストしてください

出力:

 First and second values are equal. First value is less than the third value.