为了账号安全,请及时绑定邮箱和手机立即绑定

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

  int one = 10 ;

        int two = 20 ;

        int three = 0 ;

        three=one+two;

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

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

正在回答

1 回答

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

0 回复 有任何疑惑可以回复我~
#1

慕盖茨6056564 提问者

原来如此!谢谢
2018-10-21 回复 有任何疑惑可以回复我~
#2

慕盖茨6056564 提问者

public class HelloWorld{ public static void main(String[] args) { int one = 10 ; int two = 20 ; int three = one+two; ; System.out.println("three = one + two ==>"+three); 但是我第三行改成这样,那和之前的第三行还是一样的吗?
2018-10-21 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

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

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信