住了三年的宿舍,前几天不得不搬走。也断了好几天网,所以顺手拿了本以前买的《oracle编程艺术》,感觉翻译的书就是有些地方读起来不通顺,好吃力。还好以前有点oracle经验,不然真看不懂。1.sys/guan@orcl as sysdba2.授权访问 V_$开头而非V$3.lock(1)只有修改进才加行级锁(2)读是用undo信息,所以不用加锁,也就不会阻塞(3)想要修改的数据已经另一会话修改时,才会加锁4.查询时能看到的数据定格在(1)cursor打开的时间点:read commit 的行为,read commit是默认隔离级别(2)设置transaction的时间点:read only.. Read More
1.<context:annotation-config/>注册多个处理器 <context:annotation-config/>作用是向 Spring 容器注册 AutowiredAnnotationBeanPostProcessor(@Autowired)、 CommonAnnotationB Read More
1.Looper Looper used to run a message loop for a thread. Threads by default do not have a message loop associated with them; to create one, callprepa... Read More
一。总结Looper有一个MessageQueue,用于封装消息循环。 Handler封装了消息投递,消息处理等的辅助类二。分析1.从Looper的用法开始分析 class LooperThread extends Thread { public Handler mHandler; ... Read More