自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(4)
  • 收藏
  • 关注

原创 求1+2+3+......+n(不用乘法和除法、不用for、while等判断和循环)

package com.hao.gitxuexi; /* * 单例模式的实现 * */ public class Hello { public static void main(String[] args) { int ints = sum(3); System.out.println(ints); } public static int sum(int n){ int sum = n; boolean b.

2022-02-18 08:58:26 266

原创 排序方法(冒泡排序)

package com.hao.gitxuexi; public class Hello { public static void main(String[] args) { int[] array = new int[]{1,3,23,2,12,7,101}; for (int i = 0; i < array.length - 1; i++) { for (int j = 0; j < array.length .

2022-02-18 08:52:12 134

原创 【单例模式的实现方式(饿汉式和懒汉式)】

package com.hao.gitxuexi; /* * 单例模式的实现 * */ public class Hello { //懒汉式 /*private static Hello hello = null; private Hello(){ System.out.println("懒汉:无参构造"); } public static Hello getHello(){ if (hello == null){ .

2022-02-18 08:30:03 169

原创 第四阶段day01总结

day01总结

2021-12-20 18:06:57 132

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除