为什么枚举要实现接口?
336
2022-08-27
Java中lambda表达式实现aop切面功能
目录lambda表达式实现切面功能定义一个函数式接口创建两个实现类客户端缺点
背景:最近项目中涉及到自定义线程池中子线程获取父线程的traceId,这个数据的传递过程可以用lamdba表达式进行封装实现的。这让我想到spring容器的三级缓存。其中的一个缓存singletonFactories就是存放的lambda表达式的。
// 缓存的声明
private final Map
// lambda作为参数调用addSingletonFactory方法
this.addSingletonFactory(beanName, () -> {
return this.getEahttp://rlyBeanReference(beanName, mbd, bean);
});
// addSingletonFactory方法
protected void addSingletonFactory(String beanName, ObjectFactory> singletonFactory) {
Assert.notNull(singletonFactory, "Singleton factory must not be null");
synchronized(this.singletonObjects) {
if (!this.singletonObjects.containsKey(beanName)) {
// 缓存中添加lambda
this.singletonFactories.put(beanName, singletonFactory);
this.earlySingletonObjects.remove(beanName);
this.registeredSingletons.add(beanName);
}
}
}
一些业务逻辑可以通过lambda表达式进行封装,就可以当作一个参数一样进行传递,然后在需要的时候进行执行。但是它的强大并不止于此,还可以当作aop切面进行使用。通过一个demo进行展示
lambda表达式实现切面功能
定义一个函数式接口
@FunctionalInterface
public interface DemoInterface {
void Demo();
}
创建两个实现类
public class DemoSonOne implements DemoInterface{
public DemoSonOne(Integer age) {
this.age = age;
}
private Integer age;
public Integer getAge() {
return age;
}
// 重写接口
@Override
public void Demo() {
System.out.println("I'm DemoSonOne, My age is " + age);
}
}
public class Demohttp://SonTwo implements DemoInterface{
public DemoSonTwo(String name) {
this.name = name;
}
private String name;
public String getName() {
return name;
}
// 实现接口
@Override
public void Demo() {
System.DYaqEout.println("I'm DemoSonOne, My name is " + name);
}
}
客户端
public class DemoMain { // lambda表达式进行封装 public static DemoInterface wrap(final DemoInterface demoInterface){ return () -> { System.out.println("Demo方法要执行了"); demoInterface.Demo(); System.out.println("Demo方法要执行完了"); }; } public static void main(String[] args) { DemoSonOne demoSonOne = new DemoSonOne(18); DemoSonTwo demoSonTwo = new DemoSonTwo("haha"); demoSonOne.Demo(); System.out.println("-----------------------"); demoSonTwo.Demo(); System.out.println("-----------------------"); DemoInterface wrapOne = wrap(demoSonOne); DemoInterface wrapTwo = wrap(demoSonTwo); wrapOne.Demo(); System.out.println("-----------------------"); wrapTwo.Demo(); }}public class DemoMain {
// lambda表达式进行封装
public static DemoInterface wrap(final DemoInterface demoInterface){
return () -> {
System.out.println("Demo方法要执行了");
demoInterface.Demo();
System.out.println("Demo方法要执行完了");
};
}
public static void main(String[] args) {
DemoSonOne demoSonOne = new DemoSonOne(18);
DemoSonTwo demoSonTwo = new DemoSonTwo("haha");
demoSonOne.Demo();
System.out.println("-----------------------");
demoSonTwo.Demo();
System.out.println("-----------------------");
DemoInterface wrapOne = wrap(demoSonOne);
DemoInterface wrapTwo = wrap(demoSonTwo);
wrapOne.Demo();
System.out.println("-----------------------");
wrapTwo.Demo();
}
}
执行结果
执行结果如下,可以看到经过wrap方法封装后的DemoInterface接口对象,执行过程都会走lamdba中的代码。给人一种aop的感觉
缺点
经过wrap方法返回的对象都是DemoInterface类型的,它是接口类型,如果在某种特定的情况下能够确定它是由某个子类类型实力化得到的,想要强转回去,然后获取子类独有的属性,这种情况下会报错。
public static void main(String[] args) {
DemoSonOne demoSonOne = new DemoSonOne(18);
// 经过lambda封装,得到接口类型
DemoInterface wrapOne = wrap(demoSonOne);
wrapOne.Demo();
// 由接口类型转换为现实类类型
DemoSonOne wrapOne1 = (DemoSonOne) wrapOne;
Integer age = wrapOne1.getAge();
System.out.println(age);
}
错误结果显示如下:
Exception in thread "main" java.lang.ClassCastException: class functionInterface.DemoMain$$Lambda$14/0x0000000800066840 cannot be cast to class functionInterface.DemoSonOne (functionInterface.DemoMain$$Lambda$14/0x0000000800066840 and functionInterface.DemoSonOne are in unnamed module of loader 'app') at functionInterface.DemoMain.main(DemoMain.java:26)
由此可见该方法进行封装有好处,也有坏处,所以要谨慎使用。
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~