上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 203 下一页
摘要: 【实验目的】 从SimpleDateFormat着手来探讨怎样的代码会导致线程不安全。 【代码】 用于将java.util.Date变成时间字符串的DateUtil类: package unsafesdf2; import java.text.SimpleDateFormat; import jav 阅读全文
posted @ 2022-08-23 04:12 逆火狂飙 阅读(72) 评论(0) 推荐(0)
摘要: 【代码】 package unsafesdf; import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.Collections; import java.util.HashSet; import j 阅读全文
posted @ 2022-08-22 20:23 逆火狂飙 阅读(63) 评论(0) 推荐(0)
摘要: 【实验目的】 验证i++方式生成序列号在多线程环境下的不确定性。 【实验类】 SnGenerator类,用于i++方式生成序列号 package com.hy.lab.nosynchonized; public class SnGenerator { int i=0; // 此函数如不加synchr 阅读全文
posted @ 2022-08-22 16:10 逆火狂飙 阅读(201) 评论(0) 推荐(0)
摘要: 【Oracle SQL】 一行流方式: select count(*) from all_tables where table_name=upper('your tableName') 层次化方式: select count(*) from all_tables where table_name=u 阅读全文
posted @ 2022-08-19 04:45 逆火狂飙 阅读(29) 评论(0) 推荐(0)
摘要: 【SQL】 select a.table_name as name,b.comments as remark from (select table_name from user_tables ) a inner join (select table_name,comments from user_t 阅读全文
posted @ 2022-08-16 22:08 逆火狂飙 阅读(218) 评论(1) 推荐(0)
摘要: 1.空值处理函数 1.1 nvl 用途:将第一参数(可能的)空值转换为第二参数 典型应用场景:A表左联到B表,如果某字段可能为空时。 例: SQL> select emp.name,nvl(dept.name,'梁山') as DEPT from emp 2 left join dept 3 on 阅读全文
posted @ 2022-08-16 08:26 逆火狂飙 阅读(546) 评论(0) 推荐(0)
摘要: 【数据库版本】 Oracle 19c 服务器版 【出错记录】 SQL> create user hy identified by 1234; create user hy identified by 1234 * 第 1 行出现错误: ORA-65096: 公用用户名或角色名无效 【出错原因】 or 阅读全文
posted @ 2022-08-12 03:45 逆火狂飙 阅读(5275) 评论(0) 推荐(0)
摘要: 用Html5/Canvas绘制蓝底白线六角雪花。 阅读全文
posted @ 2022-08-11 20:12 逆火狂飙 阅读(246) 评论(0) 推荐(0)
摘要: 【sql】 select a.column_name as name,a.column_id as order_num,b.comments as remark from (select column_name,column_id from user_tab_columns where table_ 阅读全文
posted @ 2022-08-11 20:06 逆火狂飙 阅读(313) 评论(1) 推荐(0)
摘要: 需求: 如题 代码: package newtname; import java.time.LocalDateTime; import java.time.format.DateTimeFormatter; public class Test { /** * 按旧表名+当前日期生成新表名 * 要求新 阅读全文
posted @ 2022-08-09 05:43 逆火狂飙 阅读(119) 评论(0) 推荐(0)
上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 203 下一页
生当作人杰 死亦为鬼雄 至今思项羽 不肯过江东