创建字符串的方法
Posted xiaotao520
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了创建字符串的方法相关的知识,希望对你有一定的参考价值。
public static void main(String[] args) { // String(char a[]) 方法 char a[] = {‘g‘,‘o‘,‘o‘,‘d‘}; String str = new String(a); System.out.println(str); //String(char a[],int offset,int length) 方法 char b[] = {‘s‘,‘t‘,‘u‘,‘d‘,‘e‘,‘n‘,‘t‘}; String s = new String(b,2,4); System.out.println(s); }
以上是关于创建字符串的方法的主要内容,如果未能解决你的问题,请参考以下文章