- 博客(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
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人