会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
程序员丁某人
博客园
首页
博问
闪存
新随笔
订阅
管理
1
2
3
4
5
···
14
下一页
2023年2月6日
StringBuffer的append讲义
摘要: 先贴源码 public synchronized StringBuffer append(String str) { toStringCache = null; super.append(str); return this; } 进入AbstractStringBuilder的append,源码如下
阅读全文
posted @ 2023-02-06 10:49 程序员丁先生
阅读(32)
评论(0)
推荐(0)
编辑
2023年2月3日
打印内存地址
摘要: Integer.toHexString(System.identityHashCode(a))
阅读全文
posted @ 2023-02-03 16:43 程序员丁先生
阅读(14)
评论(0)
推荐(0)
编辑
2023年2月1日
springboot+webSocket
摘要: 1、新建WebSocketConfig配置类 package com.config; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configura
阅读全文
posted @ 2023-02-01 16:03 程序员丁先生
阅读(170)
评论(0)
推荐(0)
编辑
2023年1月5日
String 内存地址透析
摘要: public static void main(String[] args) { String a1 = new String("1") + new String("1"); a1.intern(); String b1 = "11"; System.out.println(a1 == b1); S
阅读全文
posted @ 2023-01-05 17:25 程序员丁先生
阅读(24)
评论(0)
推荐(0)
编辑
2022年11月1日
PDF.JS初体验 VUE+spring
摘要: PDF.JS VUE SPRING
阅读全文
posted @ 2022-11-01 17:56 程序员丁先生
阅读(290)
评论(0)
推荐(0)
编辑
2022年10月17日
anaconda3 使用 jupyterlab
摘要: anaconda3 使用 jupyterlab
阅读全文
posted @ 2022-10-17 17:58 程序员丁先生
阅读(360)
评论(0)
推荐(0)
编辑
2022年8月26日
GsonUtil
摘要: package com.credithc.microenterprise.utils; import com.credithc.microenterprise.utils.adapter.DoubleDefaultAdapter; import com.credithc.microenterpris
阅读全文
posted @ 2022-08-26 15:23 程序员丁先生
阅读(189)
评论(0)
推荐(0)
编辑
2022年7月7日
MYSQL日期格式化
摘要: 1、时间格式化成固定格式字符串 SELECT DATE_FORMAT(NOW(),'%Y-%m-%d %H:%i:%s') 2、获取时间戳 select UNIX_TIMESTAMP("2022-07-06 14:11:49") select UNIX_TIMESTAMP(NOW()) select
阅读全文
posted @ 2022-07-07 16:42 程序员丁先生
阅读(10895)
评论(0)
推荐(1)
编辑
2022年7月6日
mongodb 初体验
摘要: mongodb 初体验
阅读全文
posted @ 2022-07-06 18:07 程序员丁先生
阅读(59)
评论(0)
推荐(0)
编辑
2022年6月30日
rabbitmq初体验 rabbitmq入门
摘要: rabbitmq初体验 rabbitmq入门
阅读全文
posted @ 2022-06-30 10:21 程序员丁先生
阅读(248)
评论(0)
推荐(0)
编辑
1
2
3
4
5
···
14
下一页