码迷,mamicode.com
首页 > 编程语言 > 详细

Java笔试题(5)

时间:2018-09-23 13:46:27      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:value   报错   笔试   静态   style   get   string   sys   java笔试   

class Test{
    int getValue(){
        static int i=0;
        i++;
        return i;
    }
    public static void main(String[] args){
        Test test = Test();
        test.getValue();
        int j = test.getValue();
        System.out.println(j);
    }
}

输出结果?

刚开始做的时候以为虽然getValue方法中的i是静态的,但i属于方法中的局部变量,main方法中调用2次该方法,结果还是输出1;

看完答案我蒙了,原来方法里的局部变量不能使用static修饰,这段代码编译时就会报错。

Java笔试题(5)

标签:value   报错   笔试   静态   style   get   string   sys   java笔试   

原文地址:https://www.cnblogs.com/myibu/p/9692270.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!