标签: java android garbage-collection hprof
String.format()每次调用时都会创建一个StringBuilder对象。
String.format()
StringBuilder
考虑到对Android上的对象分配和垃圾收集的关注,用某种可重用的格式化程序和对象池替换String.format操作(特别是在日志记录操作中)是否有意义?
String.format
这是否有现有的库?