class Example
{
private:
...
Example();
public:
...
};
Sometimes, when you look at other people's source code, there is much code in the class that specify the constructor like Example(), but does not implement it. I am curious about the reason to write it down if it is the purpose not to implement it. Why..?
Additionally, it is noted that even if other types of constructors are defined, they are written down.