摘要:
转自:https://www.cnblogs.com/wang-yaz/p/12424858.html 1、 查看MySQL是否开启了事件功能 查看命令: show variables like '%sc%'; 打开event_scheduler(临时开启,MySQL服务重启后时效) SET GLO 阅读全文
摘要:
Jdk里最不缺得就是迭代器,自己写一个,加深下理解 public class CustomList<T> implements Iterable<T> { private final Object[] items = new Object[20]; private int size = 0; pub 阅读全文