Java String charAt()方法

  • Post author:
  • Post category:java


描述

此方法返回

位于字符串的指定索引处的

字符


。该字符串的索引从零开始。

语法

此方法定义的语法如下:

public char charAt(int index)

参数

这里是参数的细节:

  • index — 返回字符的索引。

返回值

  • 该方法的返回指定索引处char值。

例子:

1 public class Test {
2 
3    public static void main(String args[]) {
4       String s = "Strings are immutable";
5       char result = s.charAt(8);
6       System.out.println(result);
7    }
8 }

这将产生以下结果:

1 a

转载于:https://www.cnblogs.com/yangyi9343/p/5425510.html