JAVA Object References in JVM--Strong References

强引用(Strong references)是使用最普遍的引用。如果一个对象具有强引用,那么垃圾回收器绝不会回收它,即便内存不足JVM也会选择抛出OutOfMemoryErro,强行终止程序也不会随意回收具有强引用的对象来解决内存不足的问题。

String s = new String(“opps”);这种形式的引用成为强引用,它有以下特点:

  1. 强引用可以直接访问目标对象.
  2. 强引用所指向的对象在任何时候都不会被系统回收.
  3. 由于2的原因,强引用可能导致内存泄露.

 

publicclass ClassStrong {

      publicstaticclass Referred {

        protectedvoid finalize() {

            System.out.println("Good bye cruel world");

        }

    }

 

    publicstaticvoid collect() throws InterruptedException {

        System.out.println("Suggesting collection");

        System.gc();

        System.out.println("Sleeping");

        Thread.sleep(5000);

    }

 

    publicstaticvoid main(String args[]) throws InterruptedException {

        System.out.println("Creating strong references");

 

        // This is now a strong reference.

        // The object will only be collected if all references to it disappear.

        Referred strong = new Referred();

 

        // Attempt to claim a suggested reference.

        ClassStrong.collect();

        System.out.println("strong="+strong);

        System.out.println("Removing reference");

        // The object may now be collected.

        strong = null;

        ClassStrong.collect();

        System.out.println("strong="+strong);

        System.out.println("Done");

    }

}

Output:

Creating strong references

Suggesting collection

Sleeping

strong=ClassStrong$Referred@c17164

Removing reference

Suggesting collection

Sleeping

Good bye cruel world

strong=null

Done

只有当设置实例strongnull时才会调用gcfinalize方法,从而强制回收.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值