コンパイル時にこのエラーが発生し続けます。私はそれが私のテンプレートコンストラクタで何か間違っているかどうか、または私がどのように二重リンクリストに 'ハンドラ'型を挿入しているのか分かりません。右ここでは、完全なコードのためのコンストラクタは、デフォルトのコンストラクタを持たないメンバを明示的に初期化する必要があります
./ListNode.h:14:3: error: constructor for 'ListNode<Handler>' must explicitly
initialize the member 'data' which does not have a default constructor
ListNode(T d);
^
./doublyLinked.h:70:25: note: in instantiation of member function
'ListNode<Handler>::ListNode' requested here
ListNode<T> *node= new ListNode<T>(d);
^
simulation.cpp:56:20: note: in instantiation of member function
'DoublyLinkedList<Handler>::insertBack' requested here
handlerList->insertBack(*handler);
^
./ListNode.h:9:5: note: member is declared here
T data;
^
./handler.h:4:7: note: 'Handler' declared here
class Handler
^
相続人はgithubの - > https://github.com/Cristianooo/Registrar-Simulator