本帖最后由 孙百鑫 于 2013-6-30 08:36 编辑
同样是求长度,用.length,怎么字符串这儿就挂了呢?(另外感谢刘凯版主的鼓励,嵌套for循环印象更深刻了。)
见代码:- public class Demo2
- {
- public static void main(String args[])
- {
- int[] a={1,2,3};
- String b="123";
- System.out.println(a.length);
- System.out.println(b.length); <font color="red">————》这儿挂了!why?</font>
- }
- }
复制代码 |
|