list supported arrays params at construct function.

This commit is contained in:
2020-10-22 18:55:46 +08:00
parent 7de3a26e0f
commit 5a8e5f7884

View File

@@ -35,6 +35,7 @@ namespace hgl
public: //方法
List(){}; ///<本类构造函数
List(const T *lt,const int n){Add(lt,n);} ///<本类构造函数
List(const List<T> &lt){operator=(lt);} ///<本类构造函数
List(const std::initializer_list<T> &lt){operator=(lt);}