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

Transformation functionality for the String class

时间:2018-10-04 12:53:33      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:ack   字符   div   lower   ++   abc   mat   pack   public   

String类的转换功能:
package com.itheima_05;
/*
 * String类的转换功能:
 * char[] toCharArray():把字符串转换为字符数组
 * String toLowerCase():把字符串转换为小写字符串
 * String toUpperCase():把字符串转换为大写字符串
 * 
 * 字符串的遍历:
 *         A:length()加上charAt()
 *         B:把字符串转换为字符数组,然后遍历数组
 */
public class StringDemo {
    public static void main(String[] args) {
        //创建字符串对象
        String s = "abcde";
        
        //char[] toCharArray():把字符串转换为字符数组
        char[] chs = s.toCharArray();
        for(int x=0; x<chs.length; x++) {
            System.out.println(chs[x]);
        }
        System.out.println("-----------");
        
        //String toLowerCase():把字符串转换为小写字符串
        System.out.println("HelloWorld".toLowerCase());
        //String toUpperCase():把字符串转换为大写字符串
        System.out.println("HelloWorld".toUpperCase());
    }
}

 数组里面的长度是属性。String类里面的长度是方法。

Transformation functionality for the String class

标签:ack   字符   div   lower   ++   abc   mat   pack   public   

原文地址:https://www.cnblogs.com/lzp123456-/p/9741957.html

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