我将Eclipse与Java和Android SDK结合使用。

我有一个while循环,给了我一些问题,我需要查看它在下面的if语句中所记录的内容(将什么内容添加到两个ArrayList中)。这是循环:

 while (totalDebt > 0) {

 // stuff

 if (totalDebt > 0) {
    debtList.add(totalDebt);
    feeList.add(interestFeeTotal);
 }

}


如何使用日志查看每次迭代中发生的情况?

最佳答案

您需要在文件顶部放置

import android.util.log;


然后,您可以在该文件中的任何位置编写

Log.d("Tag","Message");


您可以在哪里发送消息,例如

Log.d("Tag", String.format("Iteration(%d), added to the debtList", i);


假设i是您的迭代变量

09-12 22:05