In visual studio I am trying to get started with c++. I created a class and it's helper file. I see in the helper file that there are two constructors declared. One with and one without the ~ sign. Like this:
Age::Age()
{
}
Age::~Age()
{
}
I am trying to google this, but I can not find out what it means. This is my first question. How to google something with special characters in them since the google search engine seems to have problems with these and filter them out.
Second I want to give an example. I tried to google "What does ::~ mean constructor c++" with zero actual hits, and maybe you can give me an answer of that, but I am sure there must be an answer already out there. But as stated before, I can't find that since somehow special characters are hard (or not possible at all?) to find using the google search engine.