也许这是一个愚蠢的问题,但我仍然想知道
如果我使用
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