当前位置:网站首页>期末复习(Day2)
期末复习(Day2)
2022-07-03 05:27:00 【天真小巫】
2022.6.21DAY583
今日看了《数据结构》中栈与队列的一部分内容,栈与队列都是线性表,二者的区别在于:栈是限定仅在表尾进行插入和删除操作的线性表。队列是只允许在一端进行插入操作,而在另一端进行删除操作的线性表。之后便是栈的进栈和出栈操作。《自动控制原理》看了关于对数频率特性曲线的绘制,一个控制系统的特征曲线可由各串联典型环节对数频率特性曲线的叠加得到。绘制步骤:1.将系统开环传递函数化为各典型环节乘积(串联)的形式。2若系统存在惯性环节,震荡环节,一阶微分环节,或者二阶微分环节,则需要确定转折频率,标注在W轴上。3.根据系统的比例环节和积分环节确定渐近对数幅频特性曲线的初始值。
今天是复习的第二天,总的来说,复习的时间是紧凑的。没睡午觉,只完成了日复习任务的40%,明天赶一些进度吧!
阅读:《底层逻辑》12% 《大话数据结构》93页
英语: 阅读" the three languages " rage n 大怒 frogs n蛙
运动:2公里
package Phone;
public class Phone {
public void call(String name){
System.out.println("给"+name+"打电话");
}
}
package Phone;
public class NewPhone extends Phone{
// public void call(String name)
@Override
/*
方法重写
*/
public void call(String name){
System.out.println("开启视频功能");
System.out.println("给"+name+"打电话");
}
}
package Phone;
import Phone.Phone;
public class PhoneDemo {
public static void main(String[] args) {
Phone p=new Phone();
p.call("林青霞");
NewPhone np=new NewPhone();
np.call("林青霞");
}
}
方法重写
子类中出现了和父类中一模一样的方法声明
方法重写的应用
当子类需要父类的功能,而功能主体子类有自己特有内容时,可以重写父类的方法,这样,既沿袭了父类的功能,又定义了子类特有的内容。
@Override
- 是一个注释
- 可以帮助我们检查重写方法的方法声明的正确性。
边栏推荐
- Burp suite plug-in based on actual combat uses tips
- Notepad++ wrap by specified character
- Webrtc protocol introduction -- an article to understand ice, stun, NAT, turn
- Simpleitk learning notes
- Chapter II program design of circular structure
- Deploy crawl detection network using tensorrt (I)
- Principles of BTC cryptography
- (subplots usage) Matplotlib how to draw multiple subgraphs (axis field)
- [basic grammar] Snake game written in C language
- Ueditor, FCKeditor, kindeditor editor vulnerability
猜你喜欢

JS dynamic table creation

Primary school campus IP network broadcasting - Design of primary school IP digital broadcasting system based on campus LAN

Celebrate the new year together

Congratulations to musk and NADELLA on their election as academicians of the American Academy of engineering, and Zhang Hongjiang and Fang daining on their election as foreign academicians
![[basic grammar] Snake game written in C language](/img/cb/83631ef3ccd7047ca42d33dc49bf90.jpg)
[basic grammar] Snake game written in C language

Classification and discussion of plane grab detection methods based on learning

Deploy crawl detection network using tensorrt (I)
![[basic grammar] C language uses for loop to print Pentagram](/img/9e/021c6c0e748e0981d4233f74c83e76.jpg)
[basic grammar] C language uses for loop to print Pentagram

今天很多 CTO 都是被干掉的,因为他没有成就业务

Shallow and first code
随机推荐
Go language interface learning notes
ROS Compilation Principle
BTC-密码学原理
[basic grammar] Snake game written in C language
Hotel public broadcasting background music - Design of hotel IP network broadcasting system based on Internet +
ES 2022 正式发布!有哪些新特性?
ninja: build stopped: subcommand failed.
Yolov5 model construction source code details | CSDN creation punch in
DEX net 2.0 for crawl detection
"Pthread.h" not found problem encountered in compiling GCC
Classification and discussion of plane grab detection methods based on learning
Azure file synchronization of altaro: the end of traditional file servers?
Principles of BTC cryptography
MySQL master-slave configuration
Interview question -- output the same characters in two character arrays
Chapter II program design of circular structure
Bluebridge cup real topic 2020 palindrome date simulation construction provincial competition
Make your own dataset
ES7 easy mistakes in index creation
Xaml gradient issue in uwp for some devices