会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
奔跑的小龙码
沉住气,学习,学习,再学习!
博客园
首页
新随笔
联系
订阅
管理
08 2022 档案
StopWatch 秒表
摘要:StopWatch介绍 StopWatch是spring-core包中的工具类,它是一个秒表工具,可以计时指定代码块的运行时间,做性能分析等等 可以隐藏System.currentTimeMillis(),提高代码的可读性,减少计算错误的可能性 StopWatch不保证线程安全 StopWatch测
阅读全文
posted @
2022-08-24 10:47
coolw
阅读(396)
评论(0)
推荐(0)
MySQL同表A和B字段值互换
摘要:update table t1, table t2 set t1.field1 = t2.field2, t1.field2 = t2.field1 where t1.id = t2.id;
阅读全文
posted @
2022-08-15 08:53
coolw
阅读(224)
评论(0)
推荐(0)
公告