随笔分类 -  面试

该文被密码保护。
posted @ 2017-12-04 17:34 chp008
该文被密码保护。
posted @ 2017-12-02 14:10 chp008
摘要:Reverse Integer Reverse digits of an integer. Example1: x = 123, return 321Example2: x = -123, return -321 答案 public int reverse(int x) { long rev= 0; 阅读全文
posted @ 2017-12-01 19:03 chp008 阅读(296) 评论(0) 推荐(0)
摘要:线程池所涉及的基本应用场景: 图 转自:https://juejin.im/entry/59aeaafd51882538cb1ec2f8 从这个应用场景中,基本会涉及到: 线程、线程池相关的接口、类和方法 相关的数据结构 > 主要是同步的数据结构,例如linkedBlockingQueue|Conc 阅读全文
posted @ 2017-11-29 22:15 chp008 阅读(353) 评论(0) 推荐(0)