最新回答 / stop110
属于一个新的IOC容器
已采纳回答 / 阿阿影
springboot中的常用注解有:@SpringBootApplication、@Repository、@Service、@RestController、@ResponseBody、@Component、@ComponentScan等等。1、@SpringBootApplication这个注解是Spring Boot最核心的注解,用在 Spring Boot的主类上,标识这是一个 Spring Boot 应用,用来开启 Spring Boot 的各项能力。实际上这个注解是@Configuration,@...
2020-01-03
最新回答 / 慕先生7039742
多态的一种体现 运行类多态 会在运行的时候进行关系绑定 引用类指向实体类 调用的还是实体类的方法所以 Father father = new Son(); father是引用对象 son是实际被创建的对象
2019-07-23