在我们进行Android应用程序开发时,我们有时需要对某个对象进行打印输出,以方便我们进行调试。
很多对象实现了toString方法,我们可以方便的使用:
Log.d(TAG,A); A为实现了toString的打印输出对象。
IntentFilter.dump(new LogPrinter(Log.VERBOSE, TAG, Log.LOG_ID_SYSTEM), " ");
原文地址:http://blog.csdn.net/droyon/article/details/41122271