Date: Tue, 16 Feb 1999 22:03:16 -0500 Message-Id: <199902170303.WAA10778@envy.delorie.com> From: DJ Delorie To: djgpp AT delorie DOT com In-reply-to: (rajukv AT wipinfo DOT soft DOT net) Subject: Re: constructor names References: Reply-To: djgpp AT delorie DOT com > In C++, can I call the constructor for a class by any other name? No. Why would you want to? You almost never refer to it by name anyway, but only by inference when you instantiate an object of that class: foo x; foo *x = new foo(); Since you can overload the constructor, you don't need different names just to pass different arguments either.