i'm newbie of C++ Language..
What i habe seen is this..
MemoryFile( char * in_name = NULL )
: name(NULL), data(NULL), size(0), position(0) {
// <-----------HIER
if( in_name != NULL ) // Copy the input name.
name = in_name;
}
this is a Constructor of some Class..
my Question is....
what is this ---> " : name(NULL), data(NULL), size(0), position(0) "
is this another Input Arguments ??
normaly i have seen always this form of Constructors..
NameOfClass(Input Arguments){
Some Initialization....
}
thanks to read..