标签 - 静态代理

  • 设计模式 代理模式
    设计模式 代理模式
    | java 设计模式
    评论 0 | 点赞 0 | 预览 147
    代理模式静态代理 基于组合 和 接口public interface ProxyInterface { void apply();}public class Base implements ProxyInterface { @Override public void apply()