/images/avatar.png

方法外对象地址交换

面试题如下

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
public class Cat {
    private int inr;
    private Cat(int inr) {
        this.inr = inr;
    }
    private static void print(Cat cat) {
        System.out.println(cat.inr);
    }
    private void setInr(int inr) {
        this.inr = inr;
    }
    public static void main(String[] args) {
        Cat A = new Cat(100);
        Cat B = new Cat(101);
        System.out.println(A);
        System.out.println(B);
        swap(A, B);
        Cat.print(A);
        Cat.print(B);
    }
    private static void swap(Cat A, Cat B) {
        Cat temp = A;
        A = B;
        B = temp;
        System.out.println(A.inr);
        System.out.println(B.inr);
//        temp = new Cat(400);
//        B.setInr(400);
//        System.out.println(temp.inr);
//        System.out.println(B.inr);
    }
}

Spring5源码分析(1)设计思想与结构

1
源码地址(带有中文注解)git@github.com:yakax/spring-framework-5.0.2.RELEASE--.git 

Spring 的设计初衷其实就是为了简化我们的开发

  1. 基于 POJO 的轻量级和最小侵入性编程;
  2. 通过依赖注入和面向接口松耦合;
  3. 基于切面和惯性进行声明式编程;
  4. 通过切面和模板减少样板式代码;

而他主要是通过:面向 Bean(BOP)、依赖注入(DI)以及面向切面(AOP)这三种方式来达成的。

各类设计模式对比与Spring设计模式的总结

{% raw %}

分类设计模式
创建型工厂方法模式(Factory Method)、抽象工厂模式(Abstract Factory)、建造者模式(Builder)、原型模式(Prototype)、单例模式(Singleton)
结构型适配器模式(Adapter)、桥接模式(Bridge)、组合模式(Composite)、装饰器模式(Decorator)、门面模式(Facade)、享元模式(Flyweight)、代理模式(Proxy)
行为型解释器模式(Interpreter)、模板方法模式(Template Method)、责任链模式(Chain of Responsibility)、命令模式(Command)、迭代器模式(Iterator)、调解者模式(Mediator)、备忘录模式(Memento)、观察者模式(Observer)、状态模式(State)、策略模式(Strategy)、访问者模式(Visitor)
{% endraw %}

观察设计模式

应用场景

  1. 观察者模式有时也叫做发布订阅模式。
  2. 主要用于在关联行为之间建立一套触发机制的场景(例如一些提醒业务、MQ等等)
  3. java.awt.Event 就是观察者模式的一种,只不过 Java 很少被用来写桌面程序。上面的比如点击事件等等都是通过发布订阅绑定来触发事件。
  4. 在spring 中ContextLoaderListener是实现了ServletContextListener接口,这个接口也是继承的EventListener。这也是观察者模式的代表。

装饰设计模式

应用场景

  1. 用于扩展一个类的功能或给一个类添加附加职责
  2. 动态的给一个对象添加功能,这些功能可以再动态的撤销
  3. 在spring mvc中 HttpHeadResponseDecorator类就是使用的装饰者
  4. 在mybatis中(org.apache.ibatis.cache.Cache)里面就有许多关于缓存的装饰者类(后续我会在mybatis源码分析里面看)。
  5. 在jdk中io相关的类(比如InputStream)都是使用了装饰设计模式。

适配器设计模式

应用场景

  1. 已经存在的类,它的方法和需求不匹配(方法结果相同或相似)的情况
  2. 适配器模式不是软件设计阶段考虑的设计模式,是随着软件维护,由于不同产品、不同厂家造成功能类似而接口不相同情况下的解决方案