首页 > 代码库 > 1.9 获取指定位置的字符

1.9 获取指定位置的字符

package Demo;

public class Demo4 {
 public static void main(String[] args) {
  String str = "helloworld";
  System.out.println("字符串的长度为:"+str.length());
  
  for(int i=0;i<str.length();i++){
   System.out.print(str.charAt(i)+"、");
   
   
  }
 }
}

1.9 获取指定位置的字符