如何遍历ArrayList并将返回的对象强制转换为另一个对象

时间:2015-04-27 13:36:06

标签: c#

(这是一个学术问题)

我创建了一个Arraylist来保存学生对象。现在我需要将它们转换回原始类型并在控制台上打印出来。我需要在一个对象中创建一个循环遍历所有对象的方法(在它们被抛弃之后)并将它们打印出来 -

如何将返回的对象从ArrayList转换为(Student)对象。

在课程对象中,我创建了一个名为studentarraylist

的ArrayList
public class Course
        {
            ArrayList studentarraylist = new ArrayList();

在该课程对象中,我创建了一个添加学生的方法

public void AddStudent(Student student)
            {
                studentarraylist.Add(student);          
             }

在main中 - 我使用该方法将一个学生对象添加到ArrayList

course.AddStudent(student1);

现在我需要在Course中创建一个方法,将对象转换回原始类型,使用foreach循环遍历ArrayList中的Students,并将它们的名字和姓氏输出到控制台窗口。我有点混乱,因为我无法访问方法中的某些项目 - 当我在main中创建它们时。

public void liststudents(ArrayList studentarraylist)
            {
                Course studentoneout = (Course)studentarraylist[0];


                 for (int i = 0; i < studentarraylist.Count; ++i)
                {
                    //Console.WriteLine(studentarraylist[i]);
                    Console.WriteLine("student first name", studentarraylist.ToString());
                    Console.WriteLine("");
                }
            }

编辑***

public class Course
        {
            ArrayList studentarraylist = new ArrayList();

            private string courseName;
            //Create a course name          
            public string CourseName
            {
                get { return courseName; }
                set { courseName = value; }
            }       

            //add student method
            public void AddStudent(Student student)
            {
                studentarraylist.Add(student);          
             }



             public void liststudents(ArrayList studentarraylist)
            {

                for (int i = 0; i < studentarraylist.Count; i++)
                {
                    Student currentStudent = (Student)studentarraylist[i];
                    Console.WriteLine("Student First Name: {0}", currentStudent.FirstName); // Assuming FirstName is a property of your Student class
                    Console.WriteLine("Student Last Name: {0}", currentStudent.LastName);
                    // Output what ever else you want to the console.
                }

                 // Course studentoneout = (Course)studentarraylist[0];





//                 for (int i = 0; i < studentarraylist.Count; ++i)
 //               {
  //                  Student s = (Student)studentarraylist[i];

   //             }
            }

4 个答案:

答案 0 :(得分:5)

首先,您不应该使用ArrayList。通用List<Student>是您在此处列表所需的内容。

但是,如果您必须坚持使用ArrayList,则它不包含任何Course个对象,只包含Student个对象。所以第一次演员应该失败:

(Course)studentarraylist[0]

现在,如果你想在列表的项目上调用学生特定的方法,你需要确保在这种情况下将它们转换为正确的类型Student

for (int i = 0; i < studentarraylist.Count; ++i)
{
    Student s = (Student)studentarraylist[i];
    ...
}

此外,如果您想迭代已经添加的学生,则无需向liststudents传递任何内容 - 您已经在类实例中使用了一个字段来处理。所以它应该是

public void liststudents()
{
    for (int i = 0; i < studentarraylist.Count; ++i)
    {
        Student s = (Student)studentarraylist[i];
        ...
    }
}

Course类的用法:

Course c = new Course();
c.AddStudent(student1);
c.AddStudent(student2);
c.liststudents();

最后一件事 - 除非有这么做的理由,否则不要使用像liststudents这样的无上限名称。根据C#标准,它应该是ListStudents

答案 1 :(得分:2)

您的问题有点令人困惑,但看起来您liststudents()就是问题所在。当您从studentarraylist中提取项目时,您应该将其投放到Student对象中,而不是Course对象。

修改

liststudents()取出参数,因为您的Course类已经定义了ArrayList。你不应该将ArrayList传递给你班上已经知道的班级。

public void liststudents()
{
    for (int i = 0; i < studentarraylist.Count; i++) 
    {
        Student currentStudent = (Student)studentarraylist[i];
        Console.WriteLine("Student First Name: {0}", currentStudent.FirstName); // Assuming FirstName is a property of your Student class
        Console.WriteLine("Student Last Name: {0}", currentStudent.LastName);
        // Output what ever else you want to the console.
    }
}

然后你会使用像main这样的liststudents()......

Course myCourse = new Course();
myCourse.AddStudent(someNewStudentYouMade);
myCourse.AddStudent(someNewStudentYouMade);
myCourse.AddStudent(someNewStudentYouMade);
myCourse.AddStudent(someNewStudentYouMade);
myCourse.AddStudent(someNewStudentYouMade);
myCourse.liststudents();

答案 2 :(得分:1)

在你的for循环中,你实际上并没有打印出学生,而是整个列表。

解决此问题的一种方法是在我喜欢的位置打印出学生的姓名:

for (int i = 0; i < studentarraylist.Count; ++i)
    {
         Console.WriteLine("student first name", studentarraylist[i].Name.ToString());
         Console.WriteLine("");
    }

答案 3 :(得分:0)

  

使用foreach - 隐式广告

如果它在主

foreach (Student student in MyCourseObject.Students)
{
    Console.WriteLine("{0} {1}", student.FirstName, student.LastName);
}

如果在课程内

public void ListStudents()
    {
        foreach (Student s in this.Students)
        {
           Console.WriteLine("{0} {1}", s.FirstName, s.LastName);
        }
    }
  

使用for循环 - 显式投射

主要

for (int i = 0; i < MyCourseObject.Students.Count; i++)
{
    Student student = (Student)MyCourseObject.Students[i];
    Console.WriteLine("{0} {1}", student.FirstName, student.LastName);
}

如果在课程班级内

public void ListStudents()
    {
         for (int i = 0; i < this.Students.Count; i++)
         {
             Student student = (Student)this.Students[i];
             Console.WriteLine("{0} {1}", student.FirstName, student.LastName);
         }
     }

为此假设:

  • 课程类中定义了一个学生ArrayList。

  • MyCourseObject是一个课程类实例。

  • 学生是Arraylist,其中包含Student类型的对象(实例)。