2012年12月18日
摘要: 简单例子:class Test{ public static void main(String args[]) { int val; StringBuffer sb1, sb2; val = 10; sb1 = new StringBuffer("apples"); sb2 = new StringBuffer("pears"); System.out.println("val is " + val); System.out.println("sb1 is " + sb1); System.out.println( 阅读全文
posted @ 2012-12-18 14:47 冲锋的路上的兵 阅读(195) 评论(0) 推荐(0) 编辑