欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Transformation functionality for the String class

程序员文章站 2022-04-06 11:58:25
数组里面的长度是属性。String类里面的长度是方法。 ......
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类里面的长度是方法。