摘要:
Thread 创建线程方式1 继承Thread类 子类继承Thread类具备多线程能力 启动线程:子类对象.start() 不建议使用:避免OOP单继承局限性 //创建线程方式1:继承Thread类,重写run()方法,调用start开启线程 //线程开启不一定立即执行,由cpu调度 public 阅读全文
摘要:
Thread 创建线程方式1 继承Thread类 子类继承Thread类具备多线程能力 启动线程:子类对象.start() 不建议使用:避免OOP单继承局限性 //创建线程方式1:继承Thread类,重写run()方法,调用start开启线程 //线程开启不一定立即执行,由cpu调度 public 阅读全文
摘要:
LeetCode树 144二叉树的前序遍历 class Solution { public List<Integer> preorderTraversal(TreeNode root) { List<Integer> res = new ArrayList<Integer>(); preorder( 阅读全文
|