これはばかげた質問かもしれませんが、それでも疑問に思います
私が使用する場合
ArrayList<Integer> Data=new ArrayList<Integer>();
for(int data:Data)
//some code here
//print out the iteration times
使用せずに反復回数 (実行時間ではありません) を出力したい
for int i;i<blahblahblah;i++) output i
たとえば、出力
output:
This is iteration times: 1 the data is : blahblahblah
This is iteration times: 2 the data is : blahblahblah
This is iteration times: 3 the data is : blahblahblah