當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Java.util.Scanner.nextLine()用法及代碼示例



描述

這個java.util.Scanner.nextLine()方法使這個掃描器越過當前行並返回被跳過的輸入。此方法返回當前行的其餘部分,不包括末尾的任何行分隔符。位置設置為下一行的開頭。由於此方法繼續搜索輸入以尋找行分隔符,因此如果不存在行分隔符,它可能會緩衝所有搜索要跳過的行的輸入。

聲明

以下是聲明java.util.Scanner.nextLine()方法

public String nextLine()

參數

NA

返回值

此方法返回被跳過的行

異常

  • NoSuchElementException- 如果沒有找到行

  • IllegalStateException- 如果此掃描儀已關閉

示例

下麵的例子展示了 java.util.Scanner.nextLine() 方法的用法。

package com.tutorialspoint;

import java.util.*;

public class ScannerDemo {
   public static void main(String[] args) {

      String s = "Hello World! \n 3 + 3.0 = 6.0 true ";

      // create a new scanner with the specified String Object
      Scanner scanner = new Scanner(s);

      // print the next line
      System.out.println("" + scanner.nextLine());

      // print the next line again
      System.out.println("" + scanner.nextLine());

      // close the scanner
      scanner.close();
   }
}

讓我們編譯並運行上麵的程序,這將產生以下結果 -

Hello World! 
 3 + 3.0 = 6.0 true 

相關用法


注:本文由純淨天空篩選整理自 Java.util.Scanner.nextLine() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。