单例模式破解之反射

单例模式只允许一个类有一个实例对象,并且给定入口,反射的暴力破解方式不仅可以访问单例对象的私有方法,还能创建多个对象

单例对象

public class Singleton1 {
	private static Singleton1 instance = new Singleton1();
	
	private Singleton1(){
		System.out.println("hello world!");
    }
	public static Singleton1 getInstance() {
        return instance;
    }
}

测试类

import java.lang.reflect.Constructor;

public class Test {
	public static void main(String[] args) throws Exception{
		Singleton1 s1 = Singleton1.getInstance();
		Singleton1 s2 = Singleton1.getInstance();
		System.out.println(s1 == s2);
		
		@SuppressWarnings("unchecked")
		Class<Singleton1> class1 = (Class<Singleton1>) Class .forName("fanshe.Singleton1");
		Constructor<Singleton1> con = class1.getDeclaredConstructor(null);
		con.setAccessible(true);
		Singleton1 s3 = con.newInstance();
		Singleton1 s4 = con.newInstance();
		System.out.println(s3 == s4);
	}
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值