判斷密碼是否合法的簡單邏輯(包括特殊字元)
阿新 • • 發佈:2020-12-19
public static void main(String[] args) {
//建立一個掃描器物件,用於接受鍵盤資料
Scanner scanner = new Scanner(System.in);
System.out.println("請輸入資料:");
//判斷使用者有沒有輸入字串
//使用next方式接收
String str = scanner.next();
System.out.println("輸入的內容為:" + str);
//凡是屬於IO流的類如果不關閉會一直佔用資源,要養成好習慣用完就關掉
scanner.close();
}
執行結果
next():
1.一定讀到有效字元才能結束
2.不能讀取空格
nextLine():
1.以Enter結束
2.可以讀取空格