网络层的作用:在复杂的网络环境中确定一个合适的路径
IP 协议(Internet Protocol)
IP 数据报格式
4 位版本号:指定 IP 协议的版本,对于 IPV4 来说就是 44 位首部长度:用于表示 IP 首部的长度,…
一 两种配置文件的方式
我们点开 EurekaServerConfig 可以看到
public interface EurekaServerConfig {/*** Gets the <em>AWS Access Id</em>. This is primarily used for* <em>Elastic IP Biding</em>. The access id should be provided with* a…
java 的动态绑定机制
看一个例子:
DynamicBinding.java:
package com.hspedu.poly_.dynamic_;public class DynamicBinding {public static void main(String[] args) {// a 的编译类型是 A, 运行类型是 BA a new B();//向上转型System.out.println(…