码迷,mamicode.com
首页 > 编程语言 > 详细

java-字符串的遍历和字符串数组的遍历

时间:2017-12-25 22:16:29      阅读:251      评论:0      收藏:0      [点我收藏+]

标签:pack   bcd   for   print   gpo   body   static   []   system   

package com.day7.one;

public class Demo {

  /**
  * @param args
  */
  public static void main(String[] args) {
    String s="abcde";
    for(int i=0;i<s.length();i++)
    {
      char c=s.charAt(i);
      System.out.print(c+" ");//输出a b c d e,获取字符串
    }


    String[] s1={"a","b","c","d","e"};
    for(int i=0;i<s1.length;i++)
    {
      System.out.print(s1[i]+" ");//输出a b c d e,获取字符串数组
    }
    String[] s2={"abcde"};
    System.out.println(s2.length);//输出1,只是长度为1的数组,并不是5
    for(int i=0;i<s2.length;i++)
    {
      System.out.print(s2[i]+" k");//输出abcde k
    }
  }

}

java-字符串的遍历和字符串数组的遍历

标签:pack   bcd   for   print   gpo   body   static   []   system   

原文地址:https://www.cnblogs.com/zhujialei123/p/8111364.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!