what is object slicing
Answers were Sorted based on User's Feedback
Answer / subhashish saha
When you try to assign derived class object to an object of
base class, it takes the elements that has relivance with
respect to the base class and slices off the remaining
thing. this is object slicing...
| Is This Answer Correct ? | 27 Yes | 1 No |
Answer / kar4you
When a Derived Class object is assigned to Base class, the
base class' contents in the derived object are copied to
the base class leaving behind the derived class specific
contents. This is referred as Object Slicing. That is, the
base class object can access only the base class members.
This also implies the separation of base class members from
derived class members has happened.
class base
{
public:
int i, j;
};
class derived : public base
{
public:
int k;
};
int main()
{
base b;
derived d;
b=d;
return 0;
}
here b contains i and j where as d contains i, j& k. On
assignment only i and j of the d get copied into i and j of
b. k does not get copied. On the effect object d got sliced.
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / ravi
OBJECT SLICING IS ALSO USED IN THE VIRTUAL FUNCTION
TO USE TO ACCESS THE DATA MEMBER OF DRIVED CLASS
| Is This Answer Correct ? | 0 Yes | 9 No |
Write 7 differences between "Public" function and "Private" function?
Write a program to accept a number and to print numbers in pyramid format? for eg:for a no. 5 1 212 32123 4321234 543212345
what is the use of classes in c++;
What do you mean by overloading?
write a progra in c++ using class & object to find out wheather a given no. is prim or not.
char* ptr = "Rahul"; *ptr++; printf("%s",ptr); What will be the output
What is encapsulation example?
swapping program does not use third variable
How Do you Code Composition and Aggregation in C++ ?
A file pointer always contains the __________ of the file
i ahve v low % in 12th n BSC which is aroun 50 coz science was imposed on me......nw m doin MCA n my aggregate in above 74%,what shud i say if asked about low previous percentage??????
What is the difference between a mixin and inheritance?