摘要:
继承Thread和Runable来实现多线程 public class _thread implements Runnable { @Override public void run() { for (int i = 0; i < 20; i++) { System.out.println("1") 阅读全文
2020年3月21日
摘要:
参考博客:https://blog.csdn.net/sugar_no1/article/details/88593255 一、捕获异常 Java异常机制用到的几个关键字:try、catch、finally、throw、throws。 try -- 用于监听。将要被监听的代码(可能抛出异常的代码)放 阅读全文
摘要:
一、Date类 Date d= new Date(); //获取时间戳 System.out.println(d.getTime()); SimpleDateFormat fm = new SimpleDateFormat("yy-MM-dd"); System.out.println(fm.for 阅读全文
摘要:
通常用来求解最优解 举例 斐波那契数列 有自顶向下(递归,时空复杂度高)和自底向上(迭代)两种解法 剪绳子 自下而上求出最优解 class Solution { public int cuttingRope(int n) { if(n<2) { return 0;} if(n==2) { retur 阅读全文