1. 程式人生 > 其它 >判斷密碼是否合法的簡單邏輯(包括特殊字元)

判斷密碼是否合法的簡單邏輯(包括特殊字元)

技術標籤:Javajava

    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.可以讀取空格