当前位置:网站首页>期末复习(DAY6)
期末复习(DAY6)
2022-07-03 05:27:00 【天真小巫】
今天想起史泰龙主演的《洛奇》电影,这部影片是部关于拳击的励志影片,虽然觉得这部影片的拳击画面比不过博伊卡的《终极斗士》,但看了评论之后,才知道《洛奇》这电影讲的不仅仅是关于一个废材实现拳王梦的过程,它讲到了婚姻,家庭,个人理想,事业等。题材很接近现实。无论是朋友的离去,还是妻子的离去,教练的离去,洛奇也曾有过失落,颓废,最后是振作。对他的评价是,一个永远的战士。在生活中,我也应该像一个战士一样,不能向生活低头,不断保持进攻的态势,进攻就是最好的防守。
复习:《自动控制原理》第五章习题,在第五章耗的时间太多了,要确保完成当天的任务才行。
《数电》10道判断题,5道填空题。《大话数据结构》看完了关于树方面的内容。
英语:阅读“lily and the lion” bold adj 大胆的 comely adj秀丽的
编程:标准类制作
public class Student {
//成员变量
private String name;
private int age;
//构造方法
public Student(){
}
public Student(String name, int age){
this.name=name;
this.age=age;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
public void show(){
System.out.println(name+","+age);
}
}
public class StudentDemo {
public static void main(String[] args) {
Student s=new Student();
s.setName("林青霞");
s.setAge(30);
s.show();
//带参构造方法直接创建带有属性值的对象
Student s1=new Student("林青霞",30);
s1.show();
}
}
边栏推荐
- Pessimistic lock and optimistic lock of multithreading
- 2022.7.2day594
- [practical project] autonomous web server
- appium1.22. Appium inspector after X version needs to be installed separately
- Differences among bio, NiO and AIO
- Overview of basic knowledge of C language
- (subplots用法)matplotlib如何绘制多个子图(轴域)
- 求质数的方法
- 乾元通多卡聚合路由器的技术解析
- Talk about how to use p6spy for SQL monitoring
猜你喜欢

Go practice -- factory mode of design patterns in golang (simple factory, factory method, abstract factory)

(完美解决)matplotlib图例(legend)如何自由设置其位置

(subplots用法)matplotlib如何绘制多个子图(轴域)

Technical analysis of qianyuantong multi card aggregation router

(perfect solution) how to set the position of Matplotlib legend freely

BIO、NIO、AIO区别

ES7 easy mistakes in index creation

Appium 1.22. L'Inspecteur appium après la version X doit être installé séparément

redis 无法远程连接问题。

College campus IP network broadcasting - manufacturer's design guide for college campus IP broadcasting scheme based on campus LAN
随机推荐
Covering Safari and edge, almost all mainstream browsers have realized webgl 2.0 support
The request database reported an error: "could not extract resultset; SQL [n/a]; needed exception is org.hibernate.exception.sqlgram"
谷歌 | 蛋白序列的深度嵌入和比对
Redis 击穿穿透雪崩
Rust基础入门之(基本类型)
Get and monitor remote server logs
聊聊如何利用p6spy进行sql监控
JS dynamic table creation
Redis 入門和數據類型講解
Overview of basic knowledge of C language
Configure and use Anaconda environment in pycharm
es7创建索引容易犯的错误
Source insight License Activation
(subplots usage) Matplotlib how to draw multiple subgraphs (axis field)
XML配置文件
JS function algorithm interview case
Best practices for setting up altaro VM backups
XML Configuration File
Burp suite plug-in based on actual combat uses tips
Yolov5 model construction source code details | CSDN creation punch in