为什么 three = one + two;不能int three = one + two 吗

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

孙涛虎

2019-09-10 23:22

        int three = one + two;

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

        int three += one;

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

        int three -= one;

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

        int three *= one;

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

        int three /= one;

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

        int three %= one;

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

为什么不要加int。。。。。

写回答 关注

1回答

  • 慕工程0123645
    2019-09-19 13:21:29

    three在那之前已经用int定义过了、

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

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

1165171 学习 · 17581 问题

查看课程

相似问题