当前位置:网站首页>【无标题】
【无标题】
2022-07-03 05:27:00 【天真小巫】
2022.6.27DAY590
今日看完梁永安的《阅读,游历和爱情-115》,《大话数据结构-116》。
《阅读,游历和爱情》这本书讲的是当前时代年轻人的价值观,困惑。
一个人既要年轻,又要有青春,但很多人一辈子只年轻过,没有青春过。青春的热量和力量,青春的梦想和激情,都不曾感受。
书中讲到作者的一个同学因为青春的疫情没回家过年,但他却说这是他有史以来过得最幸福的一个寒假,一个人看书,一个人看电影。这难道就是孤独的力量?但本人大一暑假时一个人过得不知道有多孤独。同样是一个人度过,怎么却是完全不同的感受。
人一生很短暂,要真正做一件事,时间总是不够用。王蒙老先生曾说:他这辈子最大的遗憾就是做了太多的事。我也很惭愧,有时在做事中会断线,每个人做事有太多的断线,过着过着就丢了坚持。
对于生命之书,钱穆将《曾文公家训》作为他一辈子的支撑,白岩松将《道德经》作为他的枕边书,而我的生命之书又是哪一本呢!如果可以的话,我想将《曾国藩传》作为大学时的枕边书,大学时的定海神针,毕竟,曾国藩就是坚持的代表,他的精神还是值得我去学习的,他的尙“愚”思想,对我影响还是挺深远的。但好像枕边书好像要满足随便翻看的要求。
复习:《大话数据结构》,找连通路的最小生成树,经典算法有普利姆算法和克普斯算法。求最短路径的算法有Dijkstra算法和弗洛伊德算法。然后做了一份数据结构试题。 《可视化c++》手操了一些书中要考的概念。
英语:阅读“the fox and the horse” wander up and down 徘徊 stretch vt 拉长 n延伸
justice and avarice never dwell in one house 司法和贪婪永远住在一栋房子
package cn.ithema;
public class Fu {
private void show1(){
System.out.println("private");
}
void show2(){
System.out.println("默认");
}
protected void show3(){
System.out.println("protected");
}
public void show4(){
System.out.println("public");
}
public static void main(String[] args) {
Fu f=new Fu();
f.show1();
f.show2();
f.show3();
f.show4();
}
}
package cn.ithema;
public class Demo {
public static void main(String[] args) {
Fu f=new Fu();
f.show2();
f.show3();
f.show4();
}
}
边栏推荐
- Explanation of variables, code blocks, constructors, static variables and initialization execution sequence of static code blocks of Ali interview questions
- 獲取並監控遠程服務器日志
- Audio Focus Series: write a demo to understand audio focus and audiomananger
- study hard and make progress every day
- Get and monitor remote server logs
- Making coco datasets
- Go practice -- factory mode of design patterns in golang (simple factory, factory method, abstract factory)
- Altaro set grandfather parent child (GFS) archiving
- Common methods of JS array
- Go practice -- gorilla/rpc (gorilla/rpc/json) used by gorilla web Toolkit
猜你喜欢
Technical analysis of qianyuantong multi card aggregation router
Shanghai daoning, together with American /n software, will provide you with more powerful Internet enterprise communication and security component services
XML Configuration File
College campus IP network broadcasting - manufacturer's design guide for college campus IP broadcasting scheme based on campus LAN
中职网络子网划分例题解析
Latest version of source insight
[set theory] relational closure (relational closure related theorem)
微服务常见面试题
Altaro set grandfather parent child (GFS) archiving
@Solutions to null pointer error caused by Autowired
随机推荐
The request database reported an error: "could not extract resultset; SQL [n/a]; needed exception is org.hibernate.exception.sqlgram"
Altaro virtual machine replication failed: "unsupported file type vmgs"
请求数据库报错:“could not extract ResultSet; SQL [n/a]; nested exception is org.hibernate.exception.SQLGram
@Autowired 导致空指针报错 解决方式
3dslam with 16 line lidar and octomap
Bluebridge cup real topic 2020 palindrome date simulation construction provincial competition
Pessimistic lock and optimistic lock of multithreading
Make your own dataset
[practical project] autonomous web server
Pan details of deep learning
College campus IP network broadcasting - manufacturer's design guide for college campus IP broadcasting scheme based on campus LAN
[set theory] relational power operation (relational power operation | examples of relational power operation | properties of relational power operation)
"Pthread.h" not found problem encountered in compiling GCC
How to connect the network: Chapter 1 CSDN creation punch in
"C and pointer" - Chapter 13 function of function pointer 1 - callback function 1
Configure and use Anaconda environment in pycharm
在PyCharm中配置使用Anaconda环境
Source insight operation manual installation trial
"C and pointer" - Chapter 13 function pointer 1: callback function 2 (combined with template to simplify code)
Redis使用Lua脚本简介