前言
Azure的load balancing services有四种: application gateway:Application Gateway & VM 通过 storage account 使用扩展文件-CSDN博客
Front Door and CDN profiles:Azure Front Door-CSDN博客
Load Balancer:Azure …
接口和继承
public interface In {void doSomething();
}父类:
public class T{private In in;public void setIn(In in){this.in in;}// 需要子类重写的普通方法protected void layoutChildren() {}public void Hello(){// 用子类对象,会调用子类实现…