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

为什么不在three=one+two;前面添加int

public class HelloWorld{

    public static void main(String[] args) {

   int one = 10 ;

        int two = 20 ;

        int three = 0 ;

        three = one+two;

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

为什么不在three=one+two;前面添加int

提问者:Albert668 2016-08-08 21:56

个回答

  • 陈默有言
    2016-08-08 22:03:32
    已采纳

    因为three已经定义了,int three = 0;,所以不再重新定义

  • a_G3847474
    2016-09-19 23:37:25

    请问为什么要先定义three?


  • 慕九州1934824
    2016-08-08 22:16:30

    three已经定义了,不需要重复定义