摘要:
触发器:6个 例: create trigger tri_stu before insert on t_studentfor each row begin update t_class set t_count=t_count+1 where t_id=new.t_classid; end;触发器中不 阅读全文
摘要:
static静态 public static void main 类只是用来存储和被调用的,而对象是需要执行的,执行时就必定需要知道程序的入口,这个入口就是由main所在的位置。 Java的类中没有main方法,因为它不需要执行,想执行需要自己加。 Java所编写的程序是由其他程序来启动执行的(由某 阅读全文