当谈到 Java 时,我几乎是一个完整的新手。我已经在 python 和 VB.net 中涉足了一点,仅此而已。
我正在尝试用java编写一个程序,它可以从字面上读取用户的输入并使用以下代码将其显示给他们:
import java.util.Scanner;
public class InputTesting
{
public static void main( String[] args )
{
Scanner input = new Scanner ( System.in );
String str1;
System.out.println("Input string: ");
str1 = input.nextString();
System.out.println( str1 );
}
}
我得到了错误:
InputTesting.java:13: error: cannot find symbol
str1 = input.nextString();
^
symbol: method nextString()
location: variable input of type Scanner
1 error
有人可以告诉它为什么不编译吗?谢谢!