Java之知识点小记
摘要:参考链接:https://github.com/wind0926/JAVA2020 Java都是值传递 https://blog.csdn.net/bjweimengshu/article/details/79799485 Java 不能隐式执行向下转型,损失精度 显式转型:double x; fl
阅读全文
posted @
2020-09-28 20:24
pipony
阅读(209)
推荐(0)
Java之Scanner类
摘要:参考链接:https://www.bilibili.com/video/BV12J41137hu?p=33 基本结构 两种方法,Scanner.Next()以及Scanner.NextLine(): public class TestScanner { public static void main
阅读全文
posted @
2020-09-23 20:35
pipony
阅读(119)
推荐(0)
Java之String/StringBuffer/StringBuilder
摘要:目录 三者关系 String StringBuffer StringBuilder 三者关系 https://blog.csdn.net/jisuanjiguoba/article/details/82531868 https://www.runoob.com/w3cnote/java-differ
阅读全文
posted @
2020-09-18 17:32
pipony
阅读(159)
推荐(0)
Java之JVM篇
摘要:参考链接:https://www.bilibili.com/video/BV1iJ411d7jS?from=search&seid=12790643842994759263 目录 前言 JVM的位置 JVM的体系结构 类加载器 沙箱安全机制 native方法区 程序计数器 方法区Method Are
阅读全文
posted @
2020-09-17 21:27
pipony
阅读(245)
推荐(0)
Java之final、static
摘要:参考链接:https://github.com/CyC2018/CS-Notes 两个例子
阅读全文
posted @
2020-09-15 15:29
pipony
阅读(113)
推荐(0)
Java之容器篇
摘要:参考链接:https://github.com/CyC2018/CS-Notes https://blog.csdn.net/m0_37602827/article/details/99479065 https://www.jianshu.com/p/63e76826e852 类别 具体解释 其他
阅读全文
posted @
2020-09-14 16:20
pipony
阅读(117)
推荐(0)
操作系统之内存管理篇
摘要:参考链接: https://github.com/CyC2018/CS-Notes https://blog.csdn.net/qq_29677867/article/details/91038642 https://www.jianshu.com/p/a805e2410fbe https://ww
阅读全文
posted @
2020-09-10 19:54
pipony
阅读(532)
推荐(0)
操作系统之死锁篇
摘要:参考链接: https://github.com/CyC2018/CS-Notes https://blog.csdn.net/u013348164/article/details/73737217 概念 所谓死锁,是指多个进程在运行过程中因争夺资源而照成的一种僵局。当进程处于这种僵持状态时,若无外
阅读全文
posted @
2020-09-09 10:12
pipony
阅读(275)
推荐(0)
算法之ThreeSum篇
摘要:topic:ThreeSum 目标:用于统计一个数组中和为 0 的三元组数量,每个三元组都不重复 方法 方法一:最简单方法 方法二:先排序,对两元素求和,再用二分查找寻找相反数 方法三:先排序,再用左右两指针查找一个数的相反数 方法一:最简单方法 public class ThreeSumSlow
阅读全文
posted @
2020-09-08 20:22
pipony
阅读(601)
推荐(0)
操作系统之进程管理篇
摘要:参考链接: https://github.com/CyC2018/CS-Notes https://blog.csdn.net/kuangsonghan/article/details/80674777 https://blog.csdn.net/chenhfm/article/details/26
阅读全文
posted @
2020-09-08 19:28
pipony
阅读(247)
推荐(0)
Word中表示公式
摘要:方法 内置公式编辑器 mathtype,需破解,容易行距乱掉。 latex->mathtype,快捷键ALT+\ Aurora,专门针对latex转换为word的公式 安装与使用:http://www.yuerya.me/post/aurora-%7C-latex-in-word https://b
阅读全文
posted @
2020-09-06 09:51
pipony
阅读(242)
推荐(0)