以下のコードにおけるエラーの原因が分かりません。
java
1package sample; 2 3public class sample4 { 4 public static void main(String[] args) { 5 6 int[] arrays1 = {96,45,31,29,84,77}; 7 8 display(arrays1,false); 9 10 11 12 public static void display(int[] ar,boolean isSorted) { 13 String msg = ""; 14 String num_list = ""; 15 if (isSorted == false) { 16 msg = "***並び替え前***"; 17 }else if (isSorted == true) { 18 msg = "***並び替え後***"; 19 } 20 for(int i = 0; i < ar.length; i++) { 21 if(i == ar.length - 1) { 22 num_list = Integer.toString(ar[i]); 23 break; 24 25 } 26 num_list = Integer.toString(ar[i]) + ","; 27 28 29 } 30 System.out.println(msg); 31 System.out.println(num_list); 32 33 } 34 35 36 37 } 38} 39
エラー内容は下記になります。
Exception in thread "main" java.lang.Error: Unresolved compilation problems:
メソッド display(int[], boolean) は型 sample4 で未定義です 変数 display に void は無効な型です トークン "(" に構文エラーがあります。正しくは ; です トークン "," に構文エラーがあります。正しくは ; です トークン ")" に構文エラーがあります。正しくは ; です
こちらのエラーなのですが、「変数 display に void は無効な型です」とありますが、voidは戻り値の型であると思うのですが、戻り値を設定している訳ではないため、エラーになる原因が分かりません。
何故エラーが発生してしまっているのか、こちらエラーの解決方法を教えてもらえましたら幸いです
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。