刚开始使用Java(对于Android,如果这很重要),我想要的只是在运行时写入控制台。在AS3中它将是trace(),在c#中它将是Console.Write()...它在Java中是什么?
我认为这个问题是如此基本/简单,以至于我很难向Google提出问题; Stackoverflow救援! :)
答案 0 :(得分:3)
System.out.print - >这将打印出没有最终换行符字符 System.out.println - >这将使用换行符打印,但与上面相同 System.out.printf - >这将接受format-specfiers,其中第一个参数是掩码,其他参数是替换。
http://sharkysoft.com/archive/printf/docs/javadocs/lava/clib/stdio/doc-files/specification.htm
当您使用“Android Java”时,这将起作用,如果您使用Eclipse,它将在LogCat中显示
Log.d / w / e ... - >的Android
http://developer.android.com/reference/android/util/Log.html
答案 1 :(得分:2)
看看android.util.Log
。另请参阅debugging上的开发人员参考。