001 - Java中print.printf与println的区别? printf:格式化输出,用来控制输出的格式. print:标准输出,不换行. println:标准输出,换行.例如,println("test")相当于print("test\n"). 示例: package test; public class Test { public static void main(String[] args) { System.out.print("tes…
1. 2.java转义字符的理解 参考知乎大神:http://www.zhihu.com/question/29232624 正向和逆向处理转义字符 正向:把两个字符 \ n 识别为一个转义字符 new line逆向:把一个字符 new line 识别为一个需要转义的字符,输出两个字符 \ n package 转义zifu; public class a { public static void main(String[] args) { String b = "test line 1\ntes…