我是java的新手,很抱歉,如果这是一个明显的问题。
我正在尝试逐个字符地读取字符串来创建树节点。
例如,输入"HJIOADH"
节点为H J I O A D H
我注意到了
char node = reader.next().charAt(0); I can get the first char H by this
char node = reader.next().charAt(1); I can get the second char J by this
我可以使用一个循环来获取所有角色吗?像
for i to n
node = reader.next().charAt(i)
我试过但它不起作用。
我怎么想这样做?
非常感谢您的帮助。
扫描仪阅读器=新扫描仪(System.in); System.out.println(“将节点输入为大写字母,不加空格,最后输入'/'); int i = 0; char node = reader.next()。charAt(i); while(node!='/'){
CreateNode(node); // this is a function to create a tree node
i++;
node = reader.next().charAt(i);
}
答案 0 :(得分:15)
你只需要next()
你的读者一次,除非它有很多相同的toke一次又一次地重复。
String nodes = reader.next();
for(int i = 0; i < nodes.length(); i++) {
System.out.println(nodes.charAt(i));
}
答案 1 :(得分:2)
正如Braj所说,你可以尝试reader.toCharArray()
然后你可以轻松使用循环
char[] array = reader.toCharArray();
for (char ch : array) {
System.out.println (ch);
}