我的代码在下面。如果我将.print切换到.println,除了输入请求发生在下面的行中,而不是在“enter the table size:”之后,其他一切都正常。当我把它当作印刷品时,它就不会印刷了。它只是挂着。我正在使用maven,注意到ant不会出现这种情况,但我在学校,更喜欢继续使用我被指示使用的工具。有什么解决办法吗?
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
System.out.print("Enter the table size: ");
HashTable hashTest = new HashTable(input.nextInt());
input.nextLine();
menuReceive(hashTest);
}
暂无答案!
目前还没有任何答案,快来回答吧!