适配器模式注重的是兼容。稳定的代码不去修改,直接继承下来。
DEMOpublic interface SignService {
void sign();
void login();
}
publi
2023-04-24