Java的方法Scanner類

20170405發表於2020-09-05

  Scanner類

  import java.util.Scanner;

  public class Demo {

  public static void main(String[] args){

  Scanner scanner = new Scanner(System.in);

  if (scanner.hasNext()) {

  String str = scanner.next();

  System.out.println("Scanner.next():" + str);

  }

  if (scanner.hasNextLine()) {

  String str = scanner.nextLine();

  System.out.println("Scanner.nextLine():" + str);

  }

  scanner.close();

  }

  }

  /* hello hello world

  Scanner.next():hello

  Scanner.nextLine():hello world

  */

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

  nextLine() : 可以得到空格的字串


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69979119/viewspace-2717359/,如需轉載,請註明出處,否則將追究法律責任。

相關文章