Default Constructor Takes no parameters class List { private: Node *head; public: List(); } Used for default objects, eg: std::vector v(10);