标签:cli image package system res java 优秀 ase dem
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源码。
JavaSE8基础 String 将char数组的一部分转为String
标签:cli image package system res java 优秀 ase dem
原文地址:http://www.cnblogs.com/jizuiku/p/7469040.html