操作符 + 抽象方法

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

此列表与 other 的连接。

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

实现

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