- 博客(5)
- 收藏
- 关注
原创 引用类型数组
引用类型数组 /*此类用于引用类型数组的演示*/ /** * 基本类型数组与引用类型数组的比较 */ /* 创建一个int类型的数组 * int类型是 * 整数类型 * ,所以数组为基本类型数组 * int[] arr = new int[3]; * arr[0] = 100; * * -----------------------分隔线------------------- * * 创建一个Student的数组 * Student类型是 * 引用类型 * ,所以数组为引用类型数
2022-03-15 19:01:22 97
原创 Array数组
数组的声明及元素的值的初始化 int[] arr = new int[3]; //0,0,0 int[] arr = {1,4,7}; //1,4,7 int[] arr = new int[]{1,4,7}; //1,4,7 int[] arr; //arr = {1,4,7}; //编译错误 arr = new int[]{1,4,7}; //正确 数组元素的遍历及数组的复制 public class ArrayDemo { public static void main(Strin
2022-03-15 17:32:52 295
原创 方法的讲解
一、类的创建(student类) //学生类的演示 public class Student { //成员变量 String name; //名字的变量 int age; // 年龄的变量 String addr; //地址的变量 //方法 void study() { //学习的方法 System.out.println(name + "--在学习Java"); } void sayHi() { //个人信息的方法
2022-03-09 11:17:42 117
原创 演示do...while循环结构的使用
package day11; //此类用来演示do...while循环结构的使用 import java.util.Random; import java.util.Scanner; /*测试猜数字游戏,演示do...while循环结构的使用 * 在循环结构的三要素中,如果第一要素与第三要素相同 * 我们的第一选择使用do...while循环结构 * */ public class DoWhile { public static void main(String[] args) { .
2022-03-08 19:38:53 89
原创 通过for循环打印乘法表
//此类用于练习For循环,打印乘法口诀表 public class My_ForDemo { public static void main(String[] args) { /* //九九乘法表的解析如下: int c = 7; //c的取值发生变化时 c = 8 ; c = 7 ; c = 6 ....... for (int j = 1; j <= c; j++) { System.out.print(c + .
2022-03-08 18:24:44 313
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人