黑马程序员技术交流社区

标题: 求大神指点! [打印本页]

作者: mouwengang    时间: 2015-6-10 22:23
标题: 求大神指点!
import java.util.Scanner;
class  Xiti
{
       
        public static void main(String[] args)
        {       
                Scanner sc = new Scanner(System.in);//请问这句咋理解?这创建个对象,括号里咋还有东西?
                System.out.println;
                int score = sc.nextInt();
                int y = intA(score);
                System.out.println("y="+y);
        }

        public static int intA(int x){
                int y = 0;
                if(x>0){
                        y = x + 3;
                }
                else if(x==0){
                        y = 0;
                }
                else{
                        y = x*x-1;
                }
                return y;
        }
}
作者: forTomorrow    时间: 2015-6-11 10:25
参数啊,代表键盘输入流,你看下API,查找下Scanner这个类
作者: lucien_he    时间: 2015-6-11 11:09
一、System.in
Java在java.lang.System类中声明了3个常量in、out、err,用于实现标准输入/输出功能。 声明如下:
public final class System extends Object {  public final static InputStream in = nullInputStream(); //standard input constant  public final static PrintStream out = nullPrintStream(); //standard output constant  public final static PrintStream err = nullPrintStream(); //standard error output constant }
InputStream类的read()方法可以从键盘接收数据,PrintStream类的print()和println()方法可以向屏幕输出数据。
由于read()方法声明要抛出IOException异常,调用它的函数要处理该异常。 实例:

BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String str;
str = br.readLine();
作者: 路途遥远    时间: 2015-6-11 13:37
  Scanner sc = new Scanner(System.in);
这句话的意思是创建一个Scanner类的对象。调用它的带参构造函数。
不过Scanner没有不带参数的构造函数




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2