摘要:
1.Create an initial project in https://start.spring.io 2.Unzip rar file and open with intellij 3.add other dependencies in pom.xml 4.Create two new pa 阅读全文
摘要:
Spring IoC容器 1. Spring IoC 容器简介 Spring Bean :Spring中每一个需要管理的对象称为Spring Bean(简称 Bean)。 Spring IoC容器:管理Bean 的容器。 1. 通过描述管理Bean, 包括发布和获取Bean。 2. 通过描述完成Be 阅读全文
摘要:
我们实现了可以动态增加栈大小的动态栈 并对realloc 函数的使用方法回顾了一下 一、栈的定义 1.栈是只能访问它的一端来实现数据的储存和检索的一种线性结构,他是一种LIFO(Last In First Out)先进先出的线性表。插入和删除的一端叫做栈顶(TOP),另一端叫做栈底(Botton)。 阅读全文