码迷,mamicode.com
首页 > 其他好文 > 详细

创建字符串的方法

时间:2018-06-17 13:41:18      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:main   out   方法   nbsp   string   span   字符   new   color   

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);
    }

 

创建字符串的方法

标签:main   out   方法   nbsp   string   span   字符   new   color   

原文地址:https://www.cnblogs.com/xiaotao520/p/9192644.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!