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

正在回答

3 回答

class  AB
{
    public static void main(String[] args) 
    {
        //如果在同一个作用域就只能一次,如果不同作用域可以再次声明;如两个if判断语句中的c变量                int a = 5;
        int b = 6;
        System.out.println(a+b);
        if (a>2)
        {
            //int a;
            //这里如果你把上面的a的注释解开掉的话就会报错,因为a变量是整个类的全局变量
             String c = "the same";
            System.out.println(c);
        }
        
        if (b>2)
        {
            String c = "the same";
            System.out.println(c);
        }
        
    }
}


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


class  AB
{
    public static void main(String[] args)
    {

        //如果在同一个作用域就只能一次,如果不同作用域可以再次声明;如两个if判断语句中的c变量                int a = 5;
        int b = 6;
        System.out.println(a+b);
        if (a>2)
        {
            //int a;

            //这里如果你把上面的a的注释解开掉的话就会报错,因为a变量是整个类的全局变量


            String c = "the same";
            System.out.println(c);
        }
        
        if (b>2)
        {
            String c = "the same";
            System.out.println(c);
        }
        
    }
}



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

还在同一作用域,,

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

举报

0/150
提交
取消

变量的使用方面的问题

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