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

JavaSE8基础 使用for循环配合charAt遍历字符串

时间:2017-09-03 12:14:38      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:pack   字符   oid   window   ips   http   release   images   eclipse   



    os :windows7 x64
    jdk:jdk-8u131-windows-x64
    ide:Eclipse Oxygen Release (4.7.0)
    
    
code:

package jizuiku.t00;

public class Demo6 {
	public static void main(String[] args) {

		String str = "abc01234543210cba";
		for (int i = 0, stringLength = str.length(); i < stringLength; ++i) {
			System.out.print(str.charAt(i));
		}
	}
}

 


result:
技术分享

 

    


Java优秀,值得学习。
学习资源:API手册+Java源码。

JavaSE8基础 使用for循环配合charAt遍历字符串

标签:pack   字符   oid   window   ips   http   release   images   eclipse   

原文地址:http://www.cnblogs.com/jizuiku/p/7468980.html

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