In the following piece of code, what is the meaning of ::~
GaussianMex::~GaussianMex()
{
int i;
}
This is not a single operator ::~, but a definition of GaussianMex destructor. You define class methods by ClassName::ClassMethod syntax and since destructor name is ~ClassName resulting destructor definition is ClassName::~ClassName.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With