操作符 + 抽象方法

List<int> operator +(
  1. List<int> other
)
继承

此列表与 other 的连接。

如果 other 也是一个类型数据整数列表,则返回的列表将是一个能够包含此列表和 other 中所有元素的类型数据整数列表。否则,返回的列表将是一个普通的可增长 List<int>

实现

List<int> operator +(List<int> other);