java
1class Main{ 2 public static void main(String[] args){ 3 4 Item[] items = new Item[3]; 5 int total = 0; 6 for (int i = 0;i<items.length;i++){ 7 total+=items[i].price; 8 } 9 System.out.println(total); 10 } 11} 12class Item{ 13 String name; 14 int price =100; 15} 16 17
皆さん大幅修正してしまい大変申し訳ございません。
これがなんでnullpointerexceptionになるんですか?
回答1件
あなたの回答
tips
プレビュー