常見物件-字串的遍歷

ZHOU_VIP發表於2017-05-09

package cn.itcast_04;

/*
 * 需求:遍歷獲取字串中的每一個字元
 * 
 * 分析:
 * 		A:如何能夠拿到每一個字元呢?
 * 			char charAt(int index)
 * 		B:我怎麼知道字元到底有多少個呢?
 * 			int length()
 */
public class StringTest {
	public static void main(String[] args) {
		// 定義字串
		String s = "helloworld";

		// 原始版本
		// System.out.println(s.charAt(0));
		// System.out.println(s.charAt(1));
		// System.out.println(s.charAt(2));
		// System.out.println(s.charAt(3));
		// System.out.println(s.charAt(4));
		// System.out.println(s.charAt(5));
		// System.out.println(s.charAt(6));
		// System.out.println(s.charAt(7));
		// System.out.println(s.charAt(8));
		// System.out.println(s.charAt(9));

		// 只需要我們從0取到9
		// for (int x = 0; x < 10; x++) {
		// System.out.println(s.charAt(x));
		// }

		// 如果長度特別長,我不可能去數,所以我們要用長度功能
		for (int x = 0; x < s.length(); x++) {
			
			char ch = s.charAt(x);
			
			System.out.println(ch);
		}
		
	}
}


相關文章