Java Scanner 从键盘读取行并存储在堆栈中

发布于 2024-10-26 20:27:02 字数 257 浏览 3 评论 0原文

当我按键盘上的 Enter 键时,如何告诉我的代码停止录制?

Scanner sc = new Scanner(System.in) ;
Stack<String> stack = new Stack<String>() ;
System.out.println("Enter sentence:");
    while (????)
    {
        stack.push(sc.next()) ;
    }

How can i tell my code to stop recording when i hit enter on the keyboard?

Scanner sc = new Scanner(System.in) ;
Stack<String> stack = new Stack<String>() ;
System.out.println("Enter sentence:");
    while (????)
    {
        stack.push(sc.next()) ;
    }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

像你 2024-11-02 20:27:02
Scanner sc = new Scanner(System.in);
Stack<String> stack = new Stack<String>() ;
System.out.println("Enter sentence:");

sc = new Scanner(sc.nextLine());

while (sc.hasNext())
    stack.push(sc.next());
Scanner sc = new Scanner(System.in);
Stack<String> stack = new Stack<String>() ;
System.out.println("Enter sentence:");

sc = new Scanner(sc.nextLine());

while (sc.hasNext())
    stack.push(sc.next());
沉溺在你眼里的海 2024-11-02 20:27:02

您可以尝试这样的方法来在按键盘上的回车键时停止录制吗?

String input; 
    while (  !(input = sc.nextLine()).equals("")) {
        stack.push(input) ;
    }

you can try something like this to stop recording when hit enter on the keyboard?

String input; 
    while (  !(input = sc.nextLine()).equals("")) {
        stack.push(input) ;
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文