编码1 学生对象
需求
定义学生类
有姓名
有年龄
有自我介绍的方法
类的定义
入口
编码2 学生对象数组
需求
// 定义一个对象数组长度29
// 实例化三个学生对象
// 把学生对象存放进对象数组
// 遍历这个对象数组
// 让每个学生打招呼
// 程序不能出错
代码
```bash
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TestProOne
{
class Program
{
static void Main(string[] args)
{
// 定义一个对象数组
// 类型[] 数组名 = .....
// 定义一个对象数组长度29
// 实例化三个学生对象
// 把学生对象存放进对象数组
// 遍历这个对象数组
// 让每个学生打招呼
// 程序不能出错
Student[] student_list = new Student[29];
Student liu = new Student();
Student guan = new Student();
Student zhang = new Student();
liu.name = "刘备";
liu.age = 44;
guan.name = "关羽";
guan.age = 26;
zhang.name = "张飞";
zhang.age = 22;
student_list[0] = liu;
student_list[1] = guan;
student_list[2] = zhang;
// 【刘,关,张,null,null】
for (int i = 0; i < student_list.Length; i++)
{
// 根据下标获取学生对象
Student s = student_list[i];
// 判断s是否为null
if (s == null)
{
break;
}
// 让学生对象自我介绍
s.showInfo();
}
// 卡顿
Console.ReadKey();
}
}
}