当前位置:网站首页>Final review (Day2)
Final review (Day2)
2022-07-03 05:33:00 【Naive witch】
2022.6.21DAY583
Today I saw 《 data structure 》 Part of the stack and queue , Stacks and queues are linear tables , The difference between them is : A stack is a linear table that can only be inserted and deleted at the end of a table . Queues are only allowed to insert at one end , A linear table with deletion at the other end . Then there are the stack in and stack out operations .《 Automatic control principle 》 I saw the drawing of logarithmic frequency characteristic curve , The characteristic curve of a control system can be obtained by the superposition of logarithmic frequency characteristic curves of typical links in series . Draw steps :1. The open-loop transfer function of the system is transformed into the product of each typical link ( Series connection ) In the form of .2 If there is inertia in the system , Concussion link , First order differential link , Or second-order differential link , You need to make sure Turning frequency , Marked on W On the shaft .3. The initial value of the asymptotic logarithmic amplitude frequency characteristic curve is determined according to the proportional link and integral link of the system .
Today is the second day of Review , in general , The review time is tight . Didn't take a nap , Only completed the daily review task 40%, Catch up with some progress tomorrow !
read :《 The underlying logic 》12% 《 Big talk data structure 》93 page
English : read " the three languages " rage n Great anger frogs n frog
motion :2 km
package Phone;
public class Phone {
public void call(String name){
System.out.println(" to "+name+" Make a phone call ");
}
}
package Phone;
public class NewPhone extends Phone{
// public void call(String name)
@Override
/*
Method rewriting
*/
public void call(String name){
System.out.println(" Turn on video function ");
System.out.println(" to "+name+" Make a phone call ");
}
}
package Phone;
import Phone.Phone;
public class PhoneDemo {
public static void main(String[] args) {
Phone p=new Phone();
p.call(" Brigitte Lin ");
NewPhone np=new NewPhone();
np.call(" Brigitte Lin ");
}
}
Method rewriting
As like as two peas, the same method declaration is found in the subclass.
Application of method rewriting
When a child class needs the function of a parent class , When the function subject subclass has its own content , You can override the methods of the parent class , such , It follows the function of the parent class , It also defines the specific content of the subclass .
@Override
- It's a comment
- It can help us check the correctness of the method declaration of the rewriting method .
边栏推荐
- About debugging the assignment of pagenum and PageSize of the formal parameter pageweb < T > (i.e. page encapsulation generic) in the controller
- Introduction to deep learning - definition Introduction (I)
- Go practice - gorilla / handlers used by gorilla web Toolkit
- Classification and discussion of plane grab detection methods based on learning
- [basic grammar] Snake game written in C language
- redis 遇到 NOAUTH Authentication required
- Can altaro back up Microsoft teams?
- How to use source insight
- (subplots用法)matplotlib如何绘制多个子图(轴域)
- [practical project] autonomous web server
猜你喜欢
小学校园IP网络广播-基于校园局域网的小学IP数字广播系统设计
6.23星期四库作业
(subplots用法)matplotlib如何绘制多个子图(轴域)
穀歌 | 蛋白序列的深度嵌入和比對
XML配置文件
联想R7000显卡的拆卸与安装
Webrtc native M96 version opening trip -- a reading code download and compilation (Ninja GN depot_tools)
Redis使用Lua脚本简介
Use posture of sudo right raising vulnerability in actual combat (cve-2021-3156)
Beaucoup de CTO ont été tués aujourd'hui parce qu'il n'a pas fait d'affaires
随机推荐
聊聊如何利用p6spy进行sql监控
Go practice -- gorilla/rpc (gorilla/rpc/json) used by gorilla web Toolkit
Primary school campus IP network broadcasting - Design of primary school IP digital broadcasting system based on campus LAN
期末复习(DAY6)
在PyCharm中配置使用Anaconda环境
BIO、NIO、AIO区别
Overview of basic knowledge of C language
Web APIs exclusivity
BTC-密码学原理
今天很多 CTO 都是被干掉的,因为他没有成就业务
Ueditor, FCKeditor, kindeditor editor vulnerability
"C and pointer" - Chapter 13 function of function pointer 1 - callback function 1
Pytorch through load_ state_ Dict load weight
Jetson AGX Orin 平台移植ar0233-gw5200-max9295相机驱动
Go language interface learning notes
中职网络子网划分例题解析
[practical project] autonomous web server
Disassembly and installation of Lenovo r7000 graphics card
College campus IP network broadcasting - manufacturer's design guide for college campus IP broadcasting scheme based on campus LAN
Communication - how to be a good listener?