摘要:
查询当前用户下的所有表信息 select * from user_tables 查询所有用户的表信息 select * from all_tables 查询所有的用户信息 select distinct object_name TABLE_SCHEMA from all_objects where 阅读全文
摘要:
竞态条件(Race Condition)--指的是程序的执行结果依赖线程执行的顺序 public class Test { private long count = 0; synchronized long get(){ return count; } synchronized void set(l 阅读全文