摘要: 下列程序的输出是什么? class A { public static void main(String[] a) { String v = “base”; v.concat(“ball”); v.substring(1,5); System.out.println(v); } } 分析:由于Str 阅读全文
posted @ 2016-10-12 11:46 博学善思。。ljd 阅读(4460) 评论(0) 推荐(0) 编辑