我有一个对象 Student 具有 4 个属性(年龄、姓名、部门、姓氏)。我像这样创建该对象的数组;
Student students[10] blah blah init blah.
然后我想使用一个学生数组作为方法的参数;
-(void) displayStudentInArray : (????) studentarray atIndex: (int) index {.....}
“???” 是我的问题。我在那里写什么?我不知道。
需要帮忙。我是目标 c 的新手。