linux-c-programming.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Syntax of constructor
@ 2006-03-20  3:11 Shriramana Sharma
  2006-03-20  3:34 ` Uday Karan
  0 siblings, 1 reply; 4+ messages in thread
From: Shriramana Sharma @ 2006-03-20  3:11 UTC (permalink / raw)
  To: Linux C Programming List

A header file contains the following class declaration:

class CAA2DCoordinate
{
public:
//Constructors / Destructors
	CAA2DCoordinate(): X(0), Y(0) {};

//member variables
  double X;
  double Y;
};

Now what I do not understand is the line:

	CAA2DCoordinate(): X(0), Y(0) {};

I would have thought it would be:

CAA2DCoordinate() { X = 0; Y = 0; }

just like the QDate constructor:

    QDate() { jd = 0; }

What is the meaning of the colon ":" here, and what are the (0) things, and 
why are X and Y *outside* the braces?

Thanks for your patience.

-- 

Tux #395953 resides at http://samvit.org
playing with KDE 3.51 on SUSE Linux 10.0
$ date [] CCE +2006-03-20 W12-1 UTC+0530

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2006-03-20 13:09 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-03-20  3:11 Syntax of constructor Shriramana Sharma
2006-03-20  3:34 ` Uday Karan
2006-03-20  8:17   ` Shriramana Sharma
2006-03-20 13:09     ` Glynn Clements

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).