当前位置:网站首页>【无标题】
【无标题】
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();
}
}
边栏推荐
- Progressive multi grasp detection using grasp path for rgbd images
- Why should we rewrite hashcode when we rewrite the equals method?
- 獲取並監控遠程服務器日志
- Pessimistic lock and optimistic lock of multithreading
- Deploy crawl detection network using tensorrt (I)
- Redis breakdown penetration avalanche
- JS string and array methods
- The IntelliJ platform completely disables the log4j component
- Win10 install pytullet and test
- 大学校园IP网络广播-厂家基于校园局域网的大学校园IP广播方案设计指南
猜你喜欢

"C and pointer" - Chapter 13 advanced pointer int * (* (* (*f) () [6]) ()

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

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

Map的扩容机制

College campus IP network broadcasting - manufacturer's design guide for college campus IP broadcasting scheme based on campus LAN

Audio Focus Series: write a demo to understand audio focus and audiomananger

配置xml文件的dtd

BTC-密码学原理

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

Appium 1.22. L'Inspecteur appium après la version X doit être installé séparément
随机推荐
聊聊如何利用p6spy进行sql监控
study hard and make progress every day
Altaro VM backup getting started
Shallow and first code
Webapidom get page elements
XML Configuration File
(完美解决)matplotlib图例(legend)如何自由设置其位置
Make your own dataset
Win10 install pytullet and test
Yolov5 input (I) -- mosaic data enhancement | CSDN creative punch in
中职网络子网划分例题解析
Go language interface learning notes
Based on RFC 3986 (unified resource descriptor (URI): general syntax)
Robot capture experiment demonstration video
About debugging the assignment of pagenum and PageSize of the formal parameter pageweb < T > (i.e. page encapsulation generic) in the controller
JS function algorithm interview case
Redis使用Lua脚本简介
Technical analysis of qianyuantong multi card aggregation router
Redis 过期淘汰机制
Go practice -- gorilla/rpc (gorilla/rpc/json) used by gorilla web Toolkit