構成的對象是否有方法將List方法添加到它所構成的對象上。換句話說,可以在編寫List時以這種方式編寫類從它那裏增加新的方法到該列表。下面是一個爲例:將新方法添加到列表<T>上方的對象是由
class Employee
{
public int age;
public Employee(int age)
{
this.age = age;
}
//some more code here...
}
然後:
List<Employee> sector01 = new List<Employee>(){new Employee(22), new Employee(35)};
sector01.OutputAll(); //Adds method like this