2021年6月21日
摘要: import org.slf4j.Logger;import org.slf4j.LoggerFactory;import java.text.DateFormat;import java.text.ParseException;import java.text.SimpleDateFormat;i 阅读全文
posted @ 2021-06-21 16:12 upupup-999 阅读(236) 评论(0) 推荐(0)
摘要: 在线Cron表达式生成器 (qqe2.com) 1.在主启动类上添加注解 @EnableScheduling 2.创建定时任务类,使用cron表达式 /** * 测试 * 每天七点到二十三点每五秒执行一次 */ @Scheduled(cron = "0/5 * * * * ?") public vo 阅读全文
posted @ 2021-06-21 16:00 upupup-999 阅读(46) 评论(0) 推荐(0)
  2021年6月17日
摘要: #include<stdio.h>#include<stdlib.h>typedef int ElemType;typedef struct DNode{ ElemType data; struct DNode *prior,*next; }DNode,*DLinkList; //初始化链表 boo 阅读全文
posted @ 2021-06-17 15:02 upupup-999 阅读(77) 评论(0) 推荐(0)
  2021年6月15日
摘要: #include<stdio.h>#include<stdlib.h>typedef int ElemType; typedef struct LNode{ ElemType data; struct LNode *next; }LNode,*LinkList;LNode * GetElem(Lin 阅读全文
posted @ 2021-06-15 21:47 upupup-999 阅读(116) 评论(0) 推荐(0)
摘要: package com.wang.dao;import java.io.IOException;import java.io.InputStream;import java.sql.*;import java.util.Properties;public class BaseDao { privat 阅读全文
posted @ 2021-06-15 12:15 upupup-999 阅读(113) 评论(0) 推荐(0)
  2021年6月14日
摘要: #include <stdio.h>#include <stdlib.h>#define InitSize 10 typedef int ElemType;typedef struct{ int *data; int MaxSize; int length;}SqList; void InitLis 阅读全文
posted @ 2021-06-14 21:08 upupup-999 阅读(320) 评论(0) 推荐(0)
摘要: #include <stdio.h>#define MaxSize 10typedef int ElemType;typedef struct{ int data[10]; int length;}SqList; void InitList(SqList &L){ for(int i=0;i<Max 阅读全文
posted @ 2021-06-14 20:04 upupup-999 阅读(62) 评论(0) 推荐(0)
摘要: #include <stdio.h>#define MaxSize 10typedef int ElemType;typedef struct{ int data[10]; int length;}SqList; void InitList(SqList &L){ for(int i=0;i<Max 阅读全文
posted @ 2021-06-14 18:36 upupup-999 阅读(258) 评论(0) 推荐(0)
摘要: #include <stdio.h>#include <stdlib.h>#define InitSize 10 typedef int ElemType;typedef struct{ int *data; int MaxSize; int length;}SqList; void InitLis 阅读全文
posted @ 2021-06-14 17:36 upupup-999 阅读(85) 评论(0) 推荐(0)
摘要: #include <stdio.h>#define MaxSize 10typedef int ElemType;typedef struct{ int data[10]; int length;}SqList; void InitList(SqList &L){ for(int i=0;i<Max 阅读全文
posted @ 2021-06-14 17:35 upupup-999 阅读(69) 评论(0) 推荐(0)