第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會有你想問的

為什么在實(shí)例化 Scanner 類的新對象時(shí)將 (System.in) 作為參數(shù)傳遞?

為什么在實(shí)例化 Scanner 類的新對象時(shí)將 (System.in) 作為參數(shù)傳遞?

慕村225694 2023-07-19 16:56:11
如果在掃描儀類的實(shí)例化中沒有 System.in,我無法從鍵盤分配任何值。究竟發(fā)生了什么。任何人都可以詳細(xì)說明嗎?
查看完整描述

3 回答

?
海綿寶寶撒

TA貢獻(xiàn)1809條經(jīng)驗(yàn) 獲得超8個(gè)贊

的值System.in是 的實(shí)例InputStream,是“標(biāo)準(zhǔn)輸入”。正如文檔所說:

“標(biāo)準(zhǔn)”輸入流。該流已打開并準(zhǔn)備好提供輸入數(shù)據(jù)。通常,該流對應(yīng)于鍵盤輸入或主機(jī)環(huán)境或用戶指定的另一個(gè)輸入源。

當(dāng)您使用時(shí),new Scanner(System.in)您正在使用Scanner#<init>(InputStream)構(gòu)造函數(shù),其文檔說:

構(gòu)造一個(gè) newScanner來生成從指定輸入流掃描的值。使用底層平臺的默認(rèn)字符集將流中的字節(jié)轉(zhuǎn)換為字符。

如您所見,傳遞System.in只是將其配置Scanner為從標(biāo)準(zhǔn)輸入讀取。您當(dāng)然可以使用InputStream從其他地方(例如網(wǎng)絡(luò)、文件等)讀取的不同內(nèi)容。如果您查看其他構(gòu)造函數(shù),Scanner您會發(fā)現(xiàn)您可以配置許多不同類型的源(例如文件、String等)。


查看完整回答
反對 回復(fù) 2023-07-19
?
Qyouu

TA貢獻(xiàn)1786條經(jīng)驗(yàn) 獲得超11個(gè)贊

因?yàn)槟阈枰付◤哪睦镒x取。

以下陳述完全有效并來自各種來源

Scanner?sc?=?new?Scanner(new?File("myNumbers"));

String?input?=?"1?fish?2?fish?red?fish?blue?fish";Scanner?s?=?new?Scanner(input);

Scanner?sc?=?new?Scanner(System.in);

所以,現(xiàn)在您必須清楚,在實(shí)例化 Scanner 對象時(shí)System.in?不必總是作為參數(shù)。

繼續(xù),解釋你為什么通過System.in

來自文檔

公共掃描儀(InputStream源)

構(gòu)造一個(gè)新的 Scanner,它生成從指定輸入流掃描的值。使用底層平臺的默認(rèn)字符集將流中的字節(jié)轉(zhuǎn)換為字符。

java.lang.System

/**

?* The "standard" input stream. This stream is already

?* open and ready to supply input data. Typically this stream

?* corresponds to keyboard input or another input source specified by

?* the host environment or user.

?*/

public final static InputStream in = null;

希望這是不言自明的!


查看完整回答
反對 回復(fù) 2023-07-19
?
慕碼人8056858

TA貢獻(xiàn)1803條經(jīng)驗(yàn) 獲得超6個(gè)贊

來自 Javadoc:類掃描器

| Constructor? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?| Description? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? |

|---------------------------------------------------------|----------------------------------------------------------------------------------------|

| Scanner(File source)? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? | Constructs a new Scanner that produces values scanned from the specified file.? ? ? ? ?|

| Scanner(File source, String charsetName)? ? ? ? ? ? ? ? | Constructs a new Scanner that produces values scanned from the specified file.? ? ? ? ?|

| Scanner(File source, Charset charset)? ? ? ? ? ? ? ? ? ?| Constructs a new Scanner that produces values scanned from the specified file.? ? ? ? ?|

| Scanner(InputStream source)? ? ? ? ? ? ? ? ? ? ? ? ? ? ?| Constructs a new Scanner that produces values scanned from the specified input stream. |

| Scanner(InputStream source, String charsetName)? ? ? ? ?| Constructs a new Scanner that produces values scanned from the specified input stream. |

| Scanner(InputStream source, Charset charset)? ? ? ? ? ? | Constructs a new Scanner that produces values scanned from the specified input stream. |

| Scanner(Readable source)? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? | Constructs a new Scanner that produces values scanned from the specified source.? ? ? ?|

| Scanner(String source)? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? | Constructs a new Scanner that produces values scanned from the specified string.? ? ? ?|

| Scanner(ReadableByteChannel source)? ? ? ? ? ? ? ? ? ? ?| Constructs a new Scanner that produces values scanned from the specified channel.? ? ? |

| Scanner(ReadableByteChannel source, String charsetName) | Constructs a new Scanner that produces values scanned from the specified channel.? ? ? |

| Scanner(Path source)? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? | Constructs a new Scanner that produces values scanned from the specified file.? ? ? ? ?|

| Scanner(Path source, String charsetName)? ? ? ? ? ? ? ? | Constructs a new Scanner that produces values scanned from the specified file.? ? ? ? ?|

| Scanner(Path source, Charset charset)? ? ? ? ? ? ? ? ? ?| Constructs a new Scanner that produces values scanned from the specified file.? ? ? ? ?|

要指定您想要哪種類型的掃描儀,您必須傳遞一個(gè)參數(shù)。System.in 告訴 Scanner 類,從InputStream source


查看完整回答
反對 回復(fù) 2023-07-19
  • 3 回答
  • 0 關(guān)注
  • 259 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號