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.
是否可以使用某些库或任何东西在 Java 中添加类似 C++ 的输入(即不使用扫描仪或任何东西;只是简单的单语句输入,如“cin>>”)?
不,这并不容易,因为 Java 不支持运算符重载
你可以创建一个 Scanner 对象
Scanner scan = new Scanner(System.in);
并阅读用户输入
String s = scan.readLine();
简单地说...不。使用扫描仪:
您不能有运算符重载,并且 Scanner 在标准库中。