Closed. This question is not reproducible or was caused by typos。它当前不接受答案。
                            
                        
                    
                
            
                    
                
                        
                            
                        
                    
                        
                            想改善这个问题吗? Update the question,所以它是on-topic,用于堆栈溢出。
                        
                        6年前关闭。
                    
                
        

我的问题是,当我在eclipse中运行代码时,它似乎从未在底部执行任何操作。前几天,我做了一些几乎相同的程序,它们运行良好。我唯一可以假设的是,它永远不会从扫描仪获取输入,因此它永远不会打印行,因此程序只会继续运行。

import java.util.Scanner;
public class testrun {
    public static void main(String args[]){
        String name;
        Scanner get = new Scanner(System.in);
        name = get.nextLine();
        System.out.println(name);
    }
}

最佳答案

您可能需要输入一些内容,然后按Enter键。扫描仪的nextLine()正在等待输入。

:)

它发生在我们所有人身上。

关于java - 永远不要执行代码。 Java ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21941319/

10-13 05:08