正如標題所示:我有一個需要調用的方法,但我不知道如何。這裏的方法:如何使用if else語句調用方法
public static int wordOrder(int order, String result1, String result2){
order = result1.compareToIgnoreCase(result2);
if (order == 0){
System.out.println("The words are the same.");
}else if (order > 0){
System.out.println("The order of the words alphabetically is " +result2+ " then " +result1+ ".");
}else{
System.out.println("The order of the words alphabetically is " +result1+ " then " +result2+ ".");
}
return order;
}
我該如何在主要方法中調用?任何幫助將是偉大的!謝謝!
沒有理由讓'int order'作爲方法的參數。 –
請參閱Oracle Java教程中的[將信息傳遞給方法或構造函數](http://docs.oracle.com/javase/tutorial/java/javaOO/arguments.html)。 – Jesper