Re: private data access in constructors
Thomas Rydzynski schrieb:
kiran wrote:
Consider a member of function of certain class.
You mean a method?
The concept of "method" does not exist in C++ (It does exist in Delphi,
Java, etc.). The proper term is "function member" and that is basically
what the OP has expressed.
Now we know that private (or protected) data of obj are accessible
within 'func',
You use 'data' first as a type, and then as a member, so I really don't know
what you mean.
Although the OP's snippet is somewhat contrived, I don't think,
that the OP meant data to be used as a type. As I understand it,
the term data used in
--- data & functions
simply represents the sum of all data members (and 'functions' the
sum of all function members) while the identifier data used in
X::X(X& obj)
{
data = obj.data // illegal
}
stands for one concrete data member named data. Of course this is just
my interpretation and you are right, that the OP should have given a
better example.
There exist no general rule that the above assignment inside
the c'tor of X is illegal, but we can create examples, where this
is so, e.g. if data is a constant
class X {
const int data;
};
or of reference type,
class X {
int& data;
};
In these cases data has to be initialized in the c'tors member
initializer list and a second initialization inside the c'tor body is
not allowed (In case of a reference this would have another
meaning). On the other hand these cases would also
forbid a reassignment in any other member function of X, so these
examples would not prove the OP's assertion. So without any
more information from the OP's side I can only explain the expressed
assertion by a misunderstanding of C++ concepts.
Greetings from Bremen,
Daniel Kr?gler
--
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]