
Java学习
中午不睡,下午崩溃
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
JDK7,方便下载
之前收藏的,对于某些软件要求jdk1.7以下的小伙伴们,可以下载,不需要积分网盘:链接:https://pan.baidu.com/s/1FqmD_rKVbguNwKeLdpGtrA提取码:kxn7原创 2020-08-06 08:55:32 · 195 阅读 · 0 评论 -
springboot1.x+promethus+grafana打造分布式监控系统
客户端集成prothmethus 端点目前的环境是:springboot-1.5.9.RELEASE promethus 2.18.1 grafana6.0.0加入promethus依赖<dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starte..原创 2020-06-10 10:13:38 · 525 阅读 · 0 评论 -
Java 快速排序实现
快排代码public void myQuickSort(int[] arr, int low, int hight) { if (low > hight) { return; } int i, j, temp, t; i = low; j = hight; //这个就是我们的基准值 temp = arr[low]; ...原创 2019-11-26 22:59:17 · 113 阅读 · 0 评论