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.
Javaで特定のタイプのforループを表現する方法を考えていました。
Pythonでは以下を使用します:
for x in lst1: return 10
Javaでこれを行うにはどうすればよいですか?
I know for the range for-loops, I use for(int i=0; i<100; j++) { return "asdf" }
他のタイプのループを実行する方法を知りたいだけです
int[] myints = {1, 2, 3, 4, 5}; for(int i : myints) { System.out.println(i); }