首页 > 代码库 > 1.8 取出指定位置的字符

1.8 取出指定位置的字符

package Demo;

public class Demo3 {
 public static void main(String[] args) {
  String str = "helloworld";
  System.out.println(str.charAt(0));//h
  
  
  System.out.println(str.charAt(5));//w
 }
}

1.8 取出指定位置的字符