Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
配列を調べて位置を出力するときに、プログラムが null である配列の位置を出力しないようにするにはどうすればよいですか?
for(int i=0;i<array.length;i++) { System.out.print(array[i]); }
このように簡単ですが、null の位置を出力しないようにするにはどうすればよいですか? この単純な質問への回答を事前にありがとう...
for(int i=0;i<array.length;i++) { if (array[i]!=null) { System.out.println(array[i]); } }