最后
这份《“java高分面试指南”-25分类227页1000+题50w+字解析》同样可分享给有需要的朋友,感兴趣的伙伴们可挑战一下自我,在不看答案解析的情况,测试测试自己的解题水平,这样也能达到事半功倍的效果!(好东西要大家一起看才香)
上面标红部分的类就是两个相关类对应的fastclass文件,HelloServiceImpl F a s t C l a s s B y C G L I B FastClassByCGLIB FastClassByCGLIBbc82cc02.class这个文件是被代理类对应的fastclass文件,HelloServiceImpl E n h a n c e r B y C G L I B EnhancerByCGLIB EnhancerByCGLIB75d5f5ba F a s t C l a s s B y C G L I B FastClassByCGLIB FastClassByCGLIB15a4adc1.class是产生的代理类对应的fastclass文件,下面看我们经常使用的代码:
Enhancer enh = new Enhancer();
enh.setSuperclass(HelloServiceImpl.class);
HelloMethodInterceptor inteceptor = new HelloMethodInterceptor();
HelloServiceImpl hello = new HelloServiceImpl();
inteceptor.setTarget(hello);
enh.setCallbacks(new Callback[]{inteceptor});
HelloServiceImpl serv = (HelloServiceImpl)enh.create();
serv.sayHello();
上面标红部分代码产生的实例就是HelloServiceImpl E n h a n c e r B y C G L I B EnhancerByCGLIB EnhancerByCGLIB75d5f5ba.class这个类对象的实例,下面看下这个类相关部分代码:
public final void sayHello() {
MethodInterceptor var10000 = this.CGLIB$CALLBACK_0;
if (this.CGLIB$CALLBACK_0 == null) {
CGLIB$BIND_CALLBACKS(this);
var10000 = this.CGLIB$CALLBACK_0;
}
if (var10000 != null) {
var10000.intercept(this, CGLIB$sayHello 0 0 0Method, CGLIB e m p t y A r g s , C G L I B emptyArgs, CGLIB emptyArgs,CGLIBsayHello 0 0 0Proxy);
} else {
super.sayHello();
}
}
上面的CALLBACK_0对应的就是HelloMethodInterceptor这个类,所以serv.sayHello()会转而调用HelloMethodInterceptor的intercept方法,下面看下HelloMethodInterceptor这个类:
public class HelloMethodInterceptor implements MethodInterceptor {
private Object target;
public HelloMethodInterceptor(Object target){
this.target = target;
}
最后
关于面试刷题也是有方法可言的,建议最好是按照专题来进行,然后由基础到高级,由浅入深来,效果会更好。当然,这些内容我也全部整理在一份pdf文档内,分成了以下几大专题:
- Java基础部分
- 算法与编程
- 数据库部分
- 流行的框架与新技术(Spring+SpringCloud+SpringCloudAlibaba)
这份面试文档当然不止这些内容,实际上像JVM、设计模式、ZK、MQ、数据结构等其他部分的面试内容均有涉及,因为文章篇幅,就不全部在这里阐述了。
作为一名程序员,阶段性的学习是必不可少的,而且需要保持一定的持续性,这次在这个阶段内,我对一些重点的知识点进行了系统的复习,一方面巩固了自己的基础,另一方面也提升了自己的知识广度和深度。
254613a03fab5e56a57acb)收录**