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

java基础面试题

时间:2016-10-31 18:47:31      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:对象   stat   main   log   ati   system   public   code   java   

1.

public class A {
    public int i = 10;

    public static void test(A a) {
        a.i += 10;
    }

    public static void main(String[] args) {
        A a = new A();
        test(a);
        System.out.println(a.i);

        A b = a;
        test(b);
        System.out.println(a.i);
        System.out.println(b.i);

        A c = a;
        c.i = 0;

        System.out.println(c.i);
        System.out.println(b.i);
        System.out.println(a.i);
    }
}

考点有两个:第一,创建对象时内存的开辟。第二,参数的传递。本例中其实就只有一个对象,就是第一行的new A(),这将在堆内存中开辟一块空间,

java基础面试题

标签:对象   stat   main   log   ati   system   public   code   java   

原文地址:http://www.cnblogs.com/koushr/p/5873419.html

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