溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java Scanner類

發(fā)布時間:2020-08-11 21:17:05 來源:ITPUB博客 閱讀:137 作者:as507169008 欄目:編程語言

Java Scanner類

java.util.Scanner是Java5的新特征,我們可以通過 Scanner 類來獲取用戶的輸入。

右面是創(chuàng)建 Scanner 對象的基本語法:Scanner s = new Scanner(System.in); 

接下來我們演示一個最簡單的的數(shù)據(jù)輸入,并通過 Scanner 類的 next() 與 nextLine() 方法獲取輸入的字符串,在讀取前我們一般需要 使用 hasNext 與 hasNextLine 判斷是否還有輸入的數(shù)據(jù):

::::::::::使用 next 方法:


import java.util.Scanner; 


public class ScannerDemo {  

    public static void main(String[] args) {  

        Scanner scan = new Scanner(System.in); 

// 從鍵盤接收數(shù)據(jù)  


//next方式接收字符串

        System.out.println("next方式接收:");

        // 判斷是否還有輸入

        if(scan.hasNext()){   

        String str1 = scan.next();

        System.out.println("輸入的數(shù)據(jù)為:"+str1);  

        }  


    }  

執(zhí)行以上程序輸出結果為:

$ javac ScannerDemo.java

$ java ScannerDemo

next方式接收:

youj com

輸入的數(shù)據(jù)為:youj

可以看到 com 字符串并未輸出,接下來我們看 nextLine。

http://www.iis7.com/b/plc/

::::::::::使用 nextLine 方法:

import java.util.Scanner; 


public class ScannerDemo {  

    public static void main(String[] args) {  

        Scanner scan = new Scanner(System.in); 

// 從鍵盤接收數(shù)據(jù)  


//nextLine方式接收字符串

        System.out.println("nextLine方式接收:");

        // 判斷是否還有輸入

        if(scan.hasNextLine()){   

        String str2 = scan.nextLine();

        System.out.println("輸入的數(shù)據(jù)為:"+str2);  

        }  


    }  

執(zhí)行以上程序輸出結果為:

$ javac ScannerDemo.java

$ java ScannerDemo

nextLine方式接收:

youj com

輸入的數(shù)據(jù)為:youj com

可以看到 com 字符串輸出。

。。。

next()與nextLine()區(qū)別

next():

1、一定要讀取到有效字符后才可以結束輸入。

2、對輸入有效字符之前遇到的空白,next()方法會自動將其去掉。

3、只有輸入有效字符后才將其后面輸入的空白作為分隔符或者結束符。

next()不能得到帶有空格的字符串。

nextLine():

1、以Enter為結束符,也就是說nextLine()方法返回的是輸入回車之前的所有字符。

2、可以獲得空白。

如果要輸入int或float類型的數(shù)據(jù),在Scanner類中也有支持,但是在輸入之前最好先使用 hasNextXxx() 方法進行驗證,再使用 nextXxx() 來讀取


向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經查實,將立刻刪除涉嫌侵權內容。

AI