標題:
解決next()與nextLine()無法同時使用的問題
[打印本頁]
作者:
葉桔良
時間:
2023-3-18 14:14
標題:
解決next()與nextLine()無法同時使用的問題
本帖最後由 葉桔良 於 2023-3-18 16:34 編輯
試試看,如果先使用 next() 再使用 nextLine() 會有什麼狀況?
在Scanner類別下,有next()與nextLine()兩種方法,next()是以空白或換行為區格,nextLine()則是以換行為區格讀取整行,當一起使用時,會出現nextLine()無法正常運作的問題。
會這樣子的原因是因為next()是抓取空白或\n換行字元以前的字串,所以next()抓完字串之後\n就被nextLine()抓住了,因此nextLine()只有抓到\n而已,沒有抓到應該抓的字串。
import java.util.Scanner;
public class Ch44
{
public static void main(String args[])
{
Scanner s=new Scanner(System.in);
String str1, str2;
System.out.print("請輸入一字串(不帶空白): ");
str1=s.next();
System.out.println(str1);
System.out.print("請輸入一字串(帶空白): ");
str2=s.nextLine();
System.out.println(str2);
}
}
複製代碼
作者:
葉桔良
時間:
2023-3-18 14:15
此帖僅作者可見
作者:
錢冠叡
時間:
2023-3-18 16:43
此帖僅作者可見
作者:
侯宣仲
時間:
2023-3-18 16:45
此帖僅作者可見
作者:
張駿霖
時間:
2023-3-18 16:48
此帖僅作者可見
作者:
孫文康
時間:
2023-3-18 16:49
此帖僅作者可見
作者:
侯宣任
時間:
2023-3-18 16:49
此帖僅作者可見
作者:
謝閔丞
時間:
2023-3-18 16:49
此帖僅作者可見
作者:
許浩浩
時間:
2023-3-18 16:51
此帖僅作者可見
作者:
石皓云
時間:
2023-3-18 16:57
此帖僅作者可見
作者:
柏霖
時間:
2023-3-26 21:48
此帖僅作者可見
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2