标签:android 使用 os io ar html htm log
Android的开发也可以归类为嵌入式设备的开发,即便不是嵌入式开发,依然要注意对内存和处理的使用。养成一个好的习惯对自己的帮助是很大的。
在Log的源码中可以看到这样的注释:
The order in terms of verbosity, from least to most is * ERROR, WARN, INFO, DEBUG, VERBOSE. Verbose should never be compiled * into an application except during development. Debug logs are compiled * in but stripped at runtime. Error, warning and info logs are always kept.
Log.v(),只要开发阶段被编译,其它条件下是不会被编译的。也就是说,在打包签名的时候,所有的VERBOSE级别的日志都不会编译到apk里面,也就不可能打印到内存里了。
Debug,一直都被编译,但在运行时会被跳过去,这个也可以在程序中经常使用。
至于Error,Warning,Info,会被编译,运行时也不会被忽略,也就是说在运行时会打印到内存里面,所以如果程序中用到这三个,在发布程序的时候一定要注释掉。其它这三个的主要用处就是更方便找到Log日志。
android中Logcat的深层理解,布布扣,bubuko.com
标签:android 使用 os io ar html htm log
原文地址:http://blog.csdn.net/liuzhidong123/article/details/38421085