Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要让我的扫描仪读取字符和数字吗?
此代码仅准备好数字>>>
扫描仪输入 = 新扫描仪(System.in);
我需要它来阅读 + ,字母等......
为此,您可以使用 next() 或 nextLine()。
你可以像这样使用它
String letter = input.next();
或者你可以像这样使用它,
String text = input.nextLine();
为此,您可以使用next() 。