摘要:背景:好几位同学推荐这本书不错。 从今天开始学习它。 chapter 1简介: 面试有三种形式 电话面试 共享桌面面试 要做到三点 a.思考清楚再编码 b.良好的代码命名和缩进 c.单元测试 现场面试 面试三个环境 1.行为面,2.技术面,3.提问环节。 1.行为面 a.使用STAR原则 b.为什么 阅读全文
text edit,
2022-10-04 21:15 by tonyniu8, 17 阅读, 0 推荐, 收藏, 编辑
摘要:[TOC] # top Values under 1.0 indicate that the machine is not busy. /proc/cpuinfo # sort cat -e test.sh print no display word -n display blank line so 阅读全文
linux 学习切入点
2022-05-29 21:21 by tonyniu8, 22 阅读, 0 推荐, 收藏, 编辑
摘要:linux w3 https://www.w3cschool.cn/linux/ c.biancheng https://c.biancheng.net/linux_tutorial/ 学习Linux有没有比《鸟哥的Linux私房菜》更好的书? https://www.zhihu.com/quest 阅读全文
297. Serialize and Deserialize Binary Tree
2022-04-09 21:56 by tonyniu8, 12 阅读, 0 推荐, 收藏, 编辑
摘要:https://leetcode-cn.com/problems/serialize-and-deserialize-binary-tree/solution/shou-hui-tu-jie-gei-chu-dfshe-bfsliang-chong-jie-f/ 阅读全文
system design
2022-04-09 20:36 by tonyniu8, 83 阅读, 0 推荐, 收藏, 编辑
摘要:https://github.com/donnemartin/system-design-primer/blob/master/README-zh-Hans.md 阅读全文
跟随labuladong刷算法
2022-03-12 21:02 by tonyniu8, 82 阅读, 0 推荐, 收藏, 编辑
摘要:#学习算法和刷题的框架思维 https://labuladong.gitee.io/algo/1/2/ 先做树的题。先拿下几十题 #获取刷题三件套 labuladong 刷题三件套 https://labuladong.gitee.io/algo/2/ 数据结构 高频题 # 系统设计 https:/ 阅读全文
java stream
2022-03-06 18:03 by tonyniu8, 272 阅读, 0 推荐, 收藏, 编辑
摘要:简介 Stream 是 Java8 中处理集合的关键抽象概念,它可以指定你希望对集合进行的操作,可以执行非常复杂的查找、过滤和映射数据等操作。使用Stream API 对集合数据进行操作,就类似于使用 SQL 执行的数据库查询。也可以使用 Stream API 来并行执行操作。简而言之,Stream 阅读全文
MetaSpace
2022-03-05 21:06 by tonyniu8, 331 阅读, 0 推荐, 收藏, 编辑
摘要:持久代,PermGen Space 定义: 是指内存的永久保存区域,说说为什么会内存益出:这一部分用于存放Class和Meta的信息,Class在被 Load的时候被放入PermGen space区域,它和和存放Instance的Heap区域不同,所以如果你的APP会LOAD很多CLASS的话,就很 阅读全文
java optional
2022-03-05 20:33 by tonyniu8, 15 阅读, 0 推荐, 收藏, 编辑
摘要:#1. 创建实例 private static void createOptional(){ //1. create instance // use of or ofNullable //of need to ensure it is not empty Person nullPerson=null 阅读全文
java8 lambda
2022-02-20 21:44 by tonyniu8, 5 阅读, 0 推荐, 收藏, 编辑
摘要:runnable 为函数式接口。 所以支持下列写法。 public class LambdaExpression { public static void process(Runnable r){ r.run(); } public static void main(String[] args) { 阅读全文