说明:SpringBoot使用@Scheduled创建定时任务 package com.lch.task; import org.springframework.scheduling.annotation.EnableScheduling; import org.springframework.sc ...
分类:
其他好文 时间:
2021-06-28 17:53:36
阅读次数:
0
LocalDate 年月日 LocalTime 时分秒 LocalDateTime 年月日时分秒 以 LocalDate 为例 package com.lch.time; import java.time.*; import java.time.format.DateTimeFormatter; i ...
分类:
其他好文 时间:
2021-06-28 17:53:00
阅读次数:
0
package leetcode; import java.util.ArrayList; import java.util.List; public class demo_93 { public List<String> restoreIpAddresses(String s) { List<St ...
分类:
其他好文 时间:
2021-06-28 17:51:49
阅读次数:
0
mnist 自定义CNN模型与lenet import numpy as np import matplotlib.pyplot as plt from tensorflow import keras from keras.layers import Input, Dense, Dropout, A ...
分类:
Web程序 时间:
2021-06-28 17:47:00
阅读次数:
0
1、app.js var Koa = require('koa') router = require('koa-router')() views = require('koa-views') bodyParser = require('koa-bodyparser') static = requir ...
分类:
其他好文 时间:
2021-06-28 17:46:13
阅读次数:
0
加入: import pylab pylab.rcParams['font.sans-serif'] = ['SimHei'] pylab.rcParams['font.sans-serif'] = ['Microsoft YaHei'] pylab.rcParams['axes.unicode_m ...
分类:
编程语言 时间:
2021-06-28 17:44:52
阅读次数:
0
新建MybatisPlusConfig 配置文件 package com.luna.demo.config; import com.baomidou.mybatisplus.annotation.DbType; import com.baomidou.mybatisplus.extension.pl ...
分类:
其他好文 时间:
2021-06-25 17:27:00
阅读次数:
0
import java.util.ArrayList; import java.util.Arrays; import java.util.List; /** * @author: small-sunshine * @Description:考拉兹猜想,100万以内的数 * @date: 2021/ ...
分类:
其他好文 时间:
2021-06-25 17:25:25
阅读次数:
0
package main import ( "fmt" "time" ) var jobs chan int var results chan int func work(id int, jobs <-chan int, results chan<- int) { for i := range jo ...
分类:
其他好文 时间:
2021-06-25 17:24:48
阅读次数:
0
# 1.算数运算符import b as bx = 10y = 3.1z = 3print(x + y)print(x*z)print(x/z) # 结果带小数print(x//z) # 结果只保留整数print(x % z) # 取模,取余数print(x**z) # 取幂# 2.比较运算prin ...
分类:
编程语言 时间:
2021-06-25 17:11:14
阅读次数:
0