CArray m_SList;//如何不行
CArray<CList,CList&> m_SList;//怎么不行?
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
------解决方案--------------------
First, You can't store reference in container. reference can't not be re-seated.
Second, you CList is a template, you need to initialize it to a type:
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
------解决方案--------------------
First, You can't store reference in container. reference can't not be re-seated.
Second, you CList is a template, you need to initialize it to a type:
CArray<CList<int>, CList<int>*> m_SList;