上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 29 下一页
摘要: 1.常规用法 v_sql varchar2(1000); v_sql := 'update Test set name= ''lw112190'' where id= 1'; execute immediate v_sql; 2.执行sql语句,并赋值给某个变量 v_sql := 'select n 阅读全文
posted @ 2022-06-01 16:44 天天代码码天天 阅读(137) 评论(0) 推荐(0) 编辑
摘要: import java.text.ParseException; import java.text.SimpleDateFormat; import java.time.DayOfWeek; import java.time.LocalDate; import java.time.ZoneId; i 阅读全文
posted @ 2022-05-27 14:45 天天代码码天天 阅读(23) 评论(0) 推荐(0) 编辑
摘要: 相差天数计算: /** * 相差天数计算 */ public int differentDaysByMillisecond(Date date1, Date date2) { return Math.abs((int) ((date2.getTime() - date1.getTime()) / ( 阅读全文
posted @ 2022-05-26 20:13 天天代码码天天 阅读(324) 评论(0) 推荐(0) 编辑
摘要: WC-Write Combining 合并写技术 为了提高写效率: CPU在写入L1时,同时用WC写入L2 实验代码: public class WriteCombining { private static final int ITERATIONS = Integer.MAX_VALUE; pri 阅读全文
posted @ 2022-05-22 14:52 天天代码码天天 阅读(31) 评论(0) 推荐(0) 编辑
摘要: SELECT (REGEXP_SUBSTR('LW112190', '[A-Z0-9]', 1, ROWNUM)) test FROM DUAL CONNECT BY ROWNUM <= LENGTH('LW112190') 阅读全文
posted @ 2022-05-13 15:26 天天代码码天天 阅读(11) 评论(0) 推荐(0) 编辑
摘要: import cv2 modelFile = "res10_300x300_ssd_iter_140000_fp16.caffemodel" configFile = "deploy.prototxt" conf_threshold = 0.7 net = cv2.dnn.readNetFromCa 阅读全文
posted @ 2022-05-10 08:53 天天代码码天天 阅读(39) 评论(0) 推荐(0) 编辑
摘要: 项目地址 GitHub - lxw112190/JavaClassReader: C# JavaClassReader 项目结构 一个简单的测试类 public class Test { Integer code = 123; String name = "lxw"; void method1() 阅读全文
posted @ 2022-05-07 11:37 天天代码码天天 阅读(14) 评论(0) 推荐(0) 编辑
摘要: using OpenCvSharp; namespace OPenCVDemo { class Program { static void Main(string[] args) { // Load the cascades var haarCascade = new CascadeClassifi 阅读全文
posted @ 2022-05-05 11:41 天天代码码天天 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 0 是逻辑的 false 1 是逻辑的 true空字符串是逻辑的 false null 是逻辑的 false NaN==任何 都是false 所以:空字符串是逻辑的 false , 0是逻辑的false false==false 结果是 true 想达到预期结果,使用 阅读全文
posted @ 2022-05-04 13:42 天天代码码天天 阅读(65) 评论(0) 推荐(0) 编辑
摘要: 一、修改router.js中添加base根目录配置 const vueRouter = new Router({ mode: 'history', base: 'app', 二、修改vue.config.js中添加publicPath module.exports = { publicPath: ' 阅读全文
posted @ 2022-04-29 11:14 天天代码码天天 阅读(110) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 29 下一页