Java String charAt() 方法

返回上一级

Java String 对象的 charAt() 方法用于返回指定索引处的字符

索引范围为从 0 到 length() - 1

语法

public char charAt(int index)

参数

参数 说明
index 字符的索引

返回值

返回指定索引处的字符

范例

下面的范例使用 charAt() 方法返回指定位置的字符

public class Test {

    public static void main(String args[]) {
        String s = "www.twle.cn";
        char result = s.charAt(4);
        System.out.println(result);
    }
}

编译运行以上 Java 代码,输出结果如下

t

返回上一级

Java 基础教程

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.