What is system.in

前端 未结 9 1205
隐瞒了意图╮
隐瞒了意图╮ 2021-02-06 05:50

Consider this Scanner input example.

Scanner user_input = new Scanner( System.in );

Here Scanner is the CLASS.

9条回答
  •  轮回少年
    2021-02-06 06:25

    "System.in" is a parameter that is taken by Scanner Class where "System" is a class and "in" is a static variable of type InputStream which tells the Java Compiler that System input will be provided through console(keyboard).

提交回复
热议问题