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

Java經典實例:處理單字符串

时间:2016-11-08 14:23:29      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:for循环   技术   world   i++   for   http   com   bsp   ++   

使用for循环和String对象的charAt()方法

(測試實例)

@Test
public void characterTest1(){
  String a = "Learning Java";
  for(int i=0;i<a.length();i++){
    System.out.println("Char" + i +" " +"is" +" "+ a.charAt(i));
  }
}

運行結果:

技术分享

使用for循环和String对象的toCharArray()方法

(測試實例)

@Test
public void characterTest2(){
  String s = "Hello World";
  for(char c:s.toCharArray()){
    System.out.println(c);
  }
}

運行結果:

技术分享

 

Java經典實例:處理單字符串

标签:for循环   技术   world   i++   for   http   com   bsp   ++   

原文地址:http://www.cnblogs.com/MikroWei/p/6042550.html

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