当前位置:网站首页>Final review (Day5)
Final review (Day5)
2022-07-03 05:33:00 【Naive witch】
Today is the fourth day of final review 5 God , I thought about taking my computer and staying in the library from two o'clock in the afternoon to ten o'clock in the evening three days ago , Have the ability to spend all day in the Library . little does one think , Reviewed these days , I'm tired of , It seems that the energy can't keep up . Is it like 《 flow 》 As mentioned in , If you try too hard, you won't last long , Only the right passion and investment can make what you do more lasting . In many courses , The biggest challenge is 《 Digital circuit and logic design 》《 Automatic control principle 》, Now we can only face difficulties , Don't think about the difficulty of this course when reviewing , Don't understand the topic by dividing the knowledge points , Then each one breaks . Take care of your energy first , Continue to review tomorrow !
review :《 Big talk data structure 》 About the definition of tree , Storage structure .163 page then ,《 Artificial intelligence 》 The part about knowledge representation , It took some time to figure out a multiple-choice question in the math and electronics class , I didn't understand the answer to an analysis question , Design questions cannot be designed .
English : Break 15 Minutes “the four clever brothers” , Only now do I realize the break 15 Minutes have never been used well , This is a fixed period of time , A fixed place , You can do something fixed , Whether reviewing , Still remember some words , Or read an English article .《 Everyone can use English 》 About an immersive learning , Fixed time , A fixed place , Do fixed things . I wanted to get up early and go to Xiaohu to read English , But you can't do it at a fixed time , morning 6:50 Get out of bed , As a result, even nucleic acid was not made , I don't know where the time is spent .
motion : Go to GOGO Skateboard shop 1h Skate , Then hurry back to get Erya elective
bundle n speed skilful adj Expert space v Separate carry off Take away make up n make up
public class Student {
private String name;
private int age;
public Student(){
}
public Student(String name){
this.name=name;
}
public Student(int age){
this.age=age;
}
public Student (String name,int age)
{
this.name=name;
this.age=age;
}
public void show(){
System.out.println(name+","+age);
}
}public class StudentDemo {
public static void main(String[] args) {
Student s1=new Student();
s1.show();
Student s2=new Student(" Brigitte Lin ");
s2.show();
Student s3=new Student(30);
s3.show();
Student s4=new Student(" Brigitte Lin ",30);
s4.show();
}
}

summary : The creation of construction methods
- If no constructor is defined , The system will give a default parameterless construction method .
- If the construction method is defined , The system will no longer provide the default construction method .
Overload of construction method
- If you customize the construction method with parameters , Also use the parameterless construction method , You have to write another parameterless constructor
Recommended use
Whether or not to use , All write parameterless construction methods .
边栏推荐
- 2022.7.2day594
- Linux登录MySQL出现ERROR 1045 (28000): Access denied for user ‘root‘@‘localhost‘ (using password: YES)
- Appium 1.22. L'Inspecteur appium après la version X doit être installé séparément
- 配置xml文件的dtd
- Bluebridge cup real topic 2020 palindrome date simulation construction provincial competition
- Introduction to webrtc protocol -- an article to understand dtls, SRTP, srtcp
- BTC-密码学原理
- [basic grammar] Snake game written in C language
- Learn libcef together -- set cookies for your browser
- Basic introduction of redis and explanation of eight types and transactions
猜你喜欢

BIO、NIO、AIO区别

今天很多 CTO 都是被幹掉的,因為他沒有成就業務

@Solutions to null pointer error caused by Autowired

Hotel public broadcasting background music - Design of hotel IP network broadcasting system based on Internet +

Training method of grasping angle in grasping detection

Latest version of source insight

Principles of BTC cryptography

Why should we rewrite hashcode when we rewrite the equals method?

Go practice -- gorilla / websocket used by gorilla web Toolkit

Simpleitk learning notes
随机推荐
6.23星期四库作业
XML Configuration File
C language program ideas and several commonly used filters
大学校园IP网络广播-厂家基于校园局域网的大学校园IP广播方案设计指南
Differences among bio, NiO and AIO
About debugging the assignment of pagenum and PageSize of the formal parameter pageweb < T > (i.e. page encapsulation generic) in the controller
Apache+PHP+MySQL环境搭建超详细!!!
Go practice -- closures in golang (anonymous functions, closures)
How to use source insight
"C and pointer" - Chapter 13 function pointer 1: callback function 2 (combined with template to simplify code)
Overview of basic knowledge of C language
Beaucoup de CTO ont été tués aujourd'hui parce qu'il n'a pas fait d'affaires
Pytorch through load_ state_ Dict load weight
Detailed explanation of yolov5 training own data set
Make your own dataset
Yolov5 input (II) | CSDN creative punch in
Redis Introduction et explication des types de données
期末复习(day3)
Robot capture experiment demonstration video
Yolov5 network structure + code + application details | CSDN creation punch in