我有以下模板和类别:
template<class T>
class LinkedList
{
....
....
}
class Editor
{
private:
LinkedList <LinkedList<char>> doc; //My Question is how can I implement this?
int line;
int col;
public:
Editor();
.......
//other functions
......
}
c 如同一份两维链接清单,根据文件行文和栏目保存节点(插栏)。
我的问题是,我如何在编辑班的构造和其他功能中实施和使用“思想”实例?
提前感谢。