假設(shè)我有一個 do while 循環(huán)int index = 20;do { index --;//stuff} while (index > 0);index = index + 1;我希望能夠跟蹤循環(huán)打開時執(zhí)行的迭代,以便我可以使用類似這樣的內(nèi)容在控制臺中打印它System.out.println("current iteration number is = " + iterationnumber);我怎樣才能做到這一點?
如何跟蹤 do while 循環(huán)正在進行的迭代?
幕布斯7119047
2023-08-09 17:19:12