posted on 2005-12-06 11:20 山岗 阅读(283) 评论(2) 编辑 收藏 引用
如果String str2 = new String("asda&f")呢? 回复 更多评论
呵呵~严重感谢流行大哥指点~ import java.lang.*; public class string { public static void main(String[] agrs) { String str = new String("asdaf"); int x = 1; for (int i = 0; i < str.length(); i++) { char a = str.charAt(i); if (a == '&') { x = 2; break; } } if (x == 2) { System.out.println("有&"); } else { System.out.println("没有&"); } } } 回复 更多评论
Powered by: IT博客 Copyright © 山岗