问答详情
源自:3-3 Java中的赋值运算符

three前面为什么不用加变量类型

  int one = 10 ;

        int two = 20 ;

        int three = 0 ;

        three=one+two;

        System.out.println("three = one + two ==>"+three);

这里中间的three的前面为什么不用加变量类型?

提问者:慕盖茨6056564 2018-10-21 18:33

个回答

  • Mr_JD
    2018-10-21 18:53:26
    已采纳

    因为第三行定义过了three(  int three = 0 ;)定义了的变量后面直接引用就是了