这边的运算为什么不用前面加int?

来源:3-3 Java中的赋值运算符

想在西雅图买房的全栈狗

2016-04-17 13:16

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;
        System.out.println("three += one ==>"+three);
        three -= one;
        System.out.println("three -= one ==>"+three);
        three *= one;
        System.out.println("three *= one ==>"+three);
        three /= one;
        System.out.println("three /= one ==>"+three);
        three %= one;
        System.out.println("three %= one ==>"+three);
	}
}

这边的运算为什么不用前面加int?

写回答 关注

1回答

  • I_say_明天你好
    2016-04-17 13:52:05

    因为你前面已经定义过了,所以后面不需要再用int定义了

    弑念灬冰炎 回复是猫会喵

    变量不能声明2次

    2016-06-12 15:34:57

    共 3 条回复 >

Java入门第一季(IDEA工具)升级版

0基础萌新入门第一课,从Java环境搭建、工具使用、基础语法开始

1165172 学习 · 17581 问题

查看课程

相似问题