美文网首页
字符串str中索引位置是6的字符

字符串str中索引位置是6的字符

作者: 哈迪斯Java | 来源:发表于2023-05-27 23:57 被阅读0次

    public class Ref { // 创建类
    public static void main(String args[]) { // 主方法
    String str = "hello world"; // 定义字符串str
    char mychar = str.charAt(6); // 将字符串str中索引位置是6的字符返回
    System.out.println("字符串str中索引位置是6的字符为:" + mychar); // 输出信息
    }
    }

    相关文章

      网友评论

          本文标题:字符串str中索引位置是6的字符

          本文链接:https://www.haomeiwen.com/subject/jdvhddtx.html