I've searched for what a constructor exactly is, but I can't seem to find a clear answer. In this video , fom 09 - 13 sec the author says that "a constructor is a special method that runs when you first create an object". So I conclude a constructor is a method... (special method). Then, at 22-23 sec he says that the Circle() - part is the constructor. Now I'm confused... So my question is: is a constructor the special method as a whole or is a constructor the Circle()-part within a method that has no return type (and is named exactly like the class-name). Thanks!!

