黑马程序员技术交流社区

标题: 遍历获取字符串中的每一个字符 [打印本页]

作者: aguang    时间: 2015-8-27 23:11
标题: 遍历获取字符串中的每一个字符
  1. package cn.hello;

  2. /*
  3. *         遍历获取字符串中的每一个字符
  4. *                 char charAt(int index)
  5. * */

  6. public class Test01 {
  7.     public static void main(String[] args) {
  8.         String s1="hello world take it easy ,so we can go there.";
  9.         for(int i=0;i<s1.length();i++){
  10.             System.out.print(s1.charAt(i)+", ");
  11.         }
  12.     }
  13. }
复制代码

作者: BG6FVG    时间: 2015-8-27 23:22
试运行了下 很厉害
作者: mah707    时间: 2015-8-27 23:25
chaiAt()方法,可以
作者: 追梦天涯33    时间: 2015-8-28 00:18
方法挺好的遍历是不是还有别的方法!




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2