os :windows7 x64
jdk:jdk-8u131-windows-x64
ide:Eclipse Oxygen Release (4.7.0)
code:
package jizuiku.t01; public class Demo1 { public static void main(String[] args) { char[] c = { ‘a‘, ‘b‘, ‘c‘, ‘d‘, ‘e‘, ‘f‘ }; int startIndex = 1;// 从c[1]开始 int count = 2;// 转2个,c[1]、c[2]拼在一起 String str = new String(c, startIndex, count); System.out.println(str); } }
result:
Java优秀,值得学习。
学习资源:API手册+Java源码。
时间: 2024-10-15 17:52:47