我需要一个字符串,并在一个单独的行上打印它的每个字符。
我会使用for循环吗?
public String toString(){
for (int count=0; count < password.length(); count++)
{
System.out.print(password.charAt(count));
System.out.print("\n");
}
return password; // I am confused on this. I don't want it to
//return anything, really but I cannot make return type void
}
是我拥有的,但我一直在获得NullPointExceptions。我有一个上面的方法存储输入的密码,变量在类中定义。所以,我认为它会从中拉出来。
我的问题是:如何从字符串中打印每个字符,每行一个?
答案 0 :(得分:5)
这可以胜任:
String s = "someString";
for (int i = 0; i < s.length(); i++) {
System.out.println(s.charAt(i));
}
答案 1 :(得分:4)
首先,“toString”是函数名称的错误选择,因为它是每个对象上可用的标准方法之一。这就是为什么它的编译错误使其返回类型为“void”。至于在每一行打印一个字符:
public void printStringChars(String password) {
if(password == null) {
return;
}
for (int count=0; count < password.length(); count++) {
System.out.println(password.charAt(count));
}
}
答案 2 :(得分:2)
如果您不想返回任何内容,那么您真的不应该重写toString()
方法。您应该有一个单独的方法,例如:
public void printToConsole() {
for (int count=0; count < password.length(); count++) {
System.out.println(password.charAt(count));
}
}
但是,这不是问题的原因 - 我怀疑原因是password
为空。但你还没有告诉我们你在哪里试图从......
答案 3 :(得分:2)
不,你不需要for循环。 :)
一行代码可以实现您的目标:
System.out.println(yourString.replaceAll(".", "$0\n"));
答案 4 :(得分:0)
您也可以这样做
import java.util.Scanner;
class que22 {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
System.out.println("enter here your string");
String a;
a = input.nextLine();
for (int i = 0;i < a.length(); i++ ) {
System.out.println(a.charAt(i));
}
}
}