标签: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);
}
}
運行結果:
标签:for循环 技术 world i++ for http com bsp ++
原文地址:http://www.cnblogs.com/MikroWei/p/6042550.html