常见对象_Scanner的概述和构造方法原理

package cn.itcast_01;

/*
 * Scanner:用于接收键盘录入数据。
 * 
 * 前面的时候:
 * 		A:导包
 * 		B:创建对象
 * 		C:调用方法
 * 
 * System类下有一个静态的字段:
 * 		public static final InputStream in;标准的输入流,对应着键盘录入。
 * 		
 * 		InputStream is = System.in;
 * 
 * class Demo{
 * 		public static final int x = 10;
 * 		public static final Student s = new Student();
 * }
 * int y = Demo.x;
 * Student s = Demo.s;
 * 
 * 构造方法:
 * 		Scanner(InputStream source) ;
 */
import java.util.Scanner;

public class ScannerDemo {
	public static void main(String[] args) {
		//创建对象
		Scanner sc = new Scanner(System.in);
		
		int x = sc.nextInt();
		
		System.out.println("X:"+x);
	}
}

你可能感兴趣的:(常见对象,Scanner)