idea中使用junit測試時使用Scanner類沒法正常測試

解決辦法是:在main函數中測試方可有效。函數

public static void main(String[] args){測試

 Scanner sc = new Scanner(System.in);
//接收數據
System.out.println("請輸入一個字符串數據:");
String s = sc.nextLine();
//輸出結果
System.out.println("s:"+s);

}spa

相關文章
相關標籤/搜索