上一页 1 2 3 4 5 6 7 8 9 ··· 29 下一页
摘要: package com.itheima.anli; public class Anli3 { public static void main(String[] args) { for (int i = 1; i <=9 ; i++) { for(int j=1;j<=i;j++){ int x=j* 阅读全文
posted @ 2024-03-03 20:42 小彭先森 阅读(43) 评论(0) 推荐(0) 编辑
摘要: package com.itheima.anli; import java.util.Random; public class anli2 { public static void main(String[] args) { System.out.println(createCode(4)); } 阅读全文
posted @ 2024-03-03 20:26 小彭先森 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 架构漫谈系列(1) 关注点分离 很想写相关的内容,一直以来这方面的东西很杂,自己各方面都多多少少有些总结,但是没有系统的成文,始终觉得是个遗憾。这是这个系列的第一篇。本文说的架构,还并不是说的Tier层的架构,这里面不会涉及到分布式、缓存、网络结构等等的布局,而是集中在软件的内部,是代码层级的,考虑 阅读全文
posted @ 2024-03-01 18:01 小彭先森 阅读(8) 评论(0) 推荐(0) 编辑
摘要: package com.itheima.anli; public class Anli1 { public static void main(String[] args) { calculate(1000,8,"经济舱"); System.out.println( calculate(1000,8, 阅读全文
posted @ 2024-02-29 22:07 小彭先森 阅读(12) 评论(0) 推荐(0) 编辑
摘要: package com.itheima.Method;public class Method6 { public static void main(String[] args) { int[] arrs=new int[]{2,5,6,4}; printArray(arrs); } public s 阅读全文
posted @ 2024-02-29 21:46 小彭先森 阅读(24) 评论(0) 推荐(0) 编辑
摘要: 基本类型的参数传递: 关键点:传的只是值传递,值传递:传输的是实参存储的值的副本 引用类型的参数传递:传递的是地址,是对象 阅读全文
posted @ 2024-02-29 21:06 小彭先森 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 方法被调用时,是进入到栈内存中运行的。 阅读全文
posted @ 2024-02-29 20:35 小彭先森 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 方法设计技巧: package com.itheima.Method; public class Method3 { public static void main(String[] args) { System.out.println(sum(10)); pan(5); } public stat 阅读全文
posted @ 2024-02-29 20:27 小彭先森 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 方法使用需要注意的常见问题 package com.itheima.Method; public class Method2 { public static void printhelloworld1(){ System.out.println("hello world!"); } public s 阅读全文
posted @ 2024-02-29 20:13 小彭先森 阅读(9) 评论(0) 推荐(0) 编辑
摘要: ‘ 阅读全文
posted @ 2024-02-29 19:46 小彭先森 阅读(5) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 29 下一页