会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
雷少
博客园
首页
新随笔
联系
管理
订阅
上一页
1
2
3
4
5
6
7
8
9
10
下一页
2020年8月7日
那些牛逼的基金经理
摘要: 原文链接:https://www.zhihu.com/question/28125120/answer/1388518204?utm_source=hot_content_share&utm_medium=all
阅读全文
posted @ 2020-08-07 13:42 沉默小和尚
阅读(152)
评论(0)
推荐(0)
2020年8月3日
JSON对应的maven依赖包
摘要: 原文链接:https://www.cnblogs.com/30go/p/8929898.html
阅读全文
posted @ 2020-08-03 09:25 沉默小和尚
阅读(1771)
评论(0)
推荐(0)
2020年7月29日
springBoot连接redis集群(带密码)
摘要: 参考文章:https://blog.csdn.net/u010199866/article/details/80705797 https://www.cnblogs.com/wps54213/p/12608777.html
阅读全文
posted @ 2020-07-29 14:27 沉默小和尚
阅读(5206)
评论(0)
推荐(0)
this 和super的区别
摘要: 原文链接:https://www.cnblogs.com/newbie27/p/10437587.html
阅读全文
posted @ 2020-07-29 07:21 沉默小和尚
阅读(163)
评论(0)
推荐(0)
2020年7月27日
Maven安装
摘要: 原文链接:https://blog.csdn.net/daffordil/article/details/89419252
阅读全文
posted @ 2020-07-27 11:21 沉默小和尚
阅读(71)
评论(0)
推荐(0)
2020年7月24日
安装office专业增强版2016(word/excel/ppt/visio)的记录
摘要: 原文链接地址:https://www.cnblogs.com/yulia1702/p/install_office_proplus.html https://www.cnblogs.com/huangjinyong/p/10992871.html 其中在运行命令 setup.exe/configur
阅读全文
posted @ 2020-07-24 17:56 沉默小和尚
阅读(194)
评论(0)
推荐(0)
2020年7月17日
continue语句和break语句
摘要: continue语句和break语句的区别如下: 1.break:while循环break是用于永久终止循环。即不执行本次循环中break后面的语句,直接跳出循环。 2.continue:while循环continue是用于终止本次循环。即本次循环中continue后面的代码不执行,进行下一次循环的
阅读全文
posted @ 2020-07-17 21:37 沉默小和尚
阅读(348)
评论(0)
推荐(0)
重载与重写
摘要: 重写是子类对父类的允许访问的方法的实现过程进行重新编写, 返回值和形参都不能改变。即外壳不变,核心重写! 重载(overloading) 是在一个类里面,方法名字相同,而参数不同。返回类型可以相同也可以不同。
阅读全文
posted @ 2020-07-17 20:49 沉默小和尚
阅读(124)
评论(0)
推荐(0)
自增
摘要: 小程序示例 public static void main(String[] args) throws Throwable { int num = 50 ; num = num ++ * 2 ; System.out.println(num) ; } 由于先进行赋值操作,再进行++。赋值后num还是
阅读全文
posted @ 2020-07-17 20:42 沉默小和尚
阅读(240)
评论(0)
推荐(0)
int的小测验题
摘要: 先看程序 public static void main(String[] args) throws Throwable { int num = 2147483647 ; num += 2 ; System.out.println(num) ; } java中int的取值范围为-2147483648
阅读全文
posted @ 2020-07-17 20:36 沉默小和尚
阅读(208)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
8
9
10
下一页
公告