class A
{
public:
int i;
int j;
};
class B : public A
{
public:
int k;
};
main()
{
A *a = new B;
}
is it possible to access slicing data?
is it possible to access slicing data? |
||||
|
Slicing looks like this:
There is no way for the |
|||
|
|
|
I believe the answer is to down-cast the pointer.
The premise is that you actually know for sure that at this point in code Technically, nothing is sliced yet, you just can't access it otherwise because for all the compiler knows, you have a pointer to an object of type A, and this is a case where you simply must know better. IMO, if you only use inheritance to add data fields to a class that is there only to hold data, you shouldn't generally be messing with pointers to a base class at all. If you are showing only part of the code and you do have virtual functions in there, use |
||||
|
|
*aalso contains a B part, so it is as good as sliced. – UncleBens May 7 '10 at 14:01