我正在关注这个视频:http ://www.youtube.com/watch?v= Y63vq_tcTGk 并在 8:20 他输入
ds.Add(a);
show_diem();
但是,当我执行 ds.Add(a); 时出现错误;
我是新手,所以我仍然不确定 ds 是什么?可以是什么吗?他宣称
ds = new ArrayList();
一开始那会是什么吗?为什么会弹出错误?这是我的 Form1 上的代码。“Employee”是一个类,“employeeId”“firstName”等是文本框。我使用“em”而不是“ds”。
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Collections;
namespace Employee_Program
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
public ArrayList em;
private void Form1_Load(object sender, EventArgs e)
{
em = new ArrayList();
}
private void show_employee()
{
listView1.Items.Clear();
foreach(Employee a in em)
{
int i = listView1.Items.Count;
listView1.Items.Add(a.FirstName);
listView1.Items[i].SubItems.Add(a.LastName);
listView1.Items[i].SubItems.Add(a.EmployeeId.ToString());
listView1.Items[i].SubItems.Add(a.YearSalary.ToString());
}
}
private void button1_Click(object sender, EventArgs e)
{
Employee a = new Employee();
a.FirstName = firstName.Text;
a.LastName = lastName.Text;
a.EmployeeId = float.Parse(employeeId.Text);
a.YearSalary = float.Parse(yearSalary.Text);
em.Add(a);
show_employee();
}
}
}
错误说:对象引用未设置为对象的实例。