博客园不常在线

有问题联系微信

微信号

微信公众号

摘要: 所有方法图 CalendarIntervalScheduleBuilder方法 在SimpleScheduleBuilder基础上实现了日、周、月、年 WithInterval:指定要生成触发器的时间单位和间隔。 WithIntervalInHours:指定要生成触发器的间隔按小时来 WithInt 阅读全文
posted @ 2020-06-20 15:30 Code技术分享 阅读(1880) 评论(0) 推荐(1) 编辑
摘要: 所有方法图 SimpleScheduleBuilder方法 RepeatForever:指定触发器将无限期重复。 WithRepeatCount:指定重复次数 var trigger = TriggerBuilder.Create().WithSimpleSchedule(s=>s.WithInte 阅读全文
posted @ 2020-06-20 14:58 Code技术分享 阅读(2913) 评论(0) 推荐(1) 编辑
摘要: 1.问题介绍 2.实现思路 3.代码实现 第一个版本(采用这个) public class ArrayStack { private int _maxSize; private int[] _arr; private int _top = -1; /// <summary> /// 初始化栈 /// 阅读全文
posted @ 2020-06-20 10:45 Code技术分享 阅读(415) 评论(0) 推荐(1) 编辑