os :windows7 x64
jdk:jdk-8u131-windows-x64
ide:Eclipse Oxygen Release (4.7.0)
code:
package jizuiku0; /* * @version V17.09 */ public class StringBytesDemo { public static void main(String[] args) { byte[] bs = { ‘a‘, ‘b‘, ‘c‘ };// 存储的是英文字母的ascii码 String str= new String(bs,1,2); // bs数组,从索引值为1开始,提取两个 // bs[1] bs[2] // 这个方法在 FileInputStream那里有用 System.out.println(str); } }
result:
sourceCode:
public String(byte bytes[], int offset, int length) { checkBounds(bytes, offset, length); this.value = StringCoding.decode(bytes, offset, length); }
这个底层的源代码很有意思,要花时间研究一下。
Java优秀,值得学习。
学习资源:itcast和itheima视频库。如果您有公开的资源,可以分享给我的话,用您的资源学习也可以。
博文是观看视频后,融入思考写成的。博文好,是老师讲得好。博文坏,是 给最苦 没认真。
时间: 2024-10-22 23:02:45