What is slicing?
Answer / atul shankhwar
Slicing means that the data added by a subclass are discarded when an object of the subclass is passed or returned by value or from a function expecting a base class object.
Explanation:
Consider the following class declaration:
class base
{
...
base& operator =(const base&);
base (const base&);
}
void fun( )
{
base e=m;
e=m;
}
As base copy functions don't know anything about the derived only the base part of the derived is copied. This is commonly referred to as slicing. One reason to pass objects of classes in a hierarchy is to avoid slicing. Other reasons are to preserve polymorphic behavior and to gain efficiency.
| Is This Answer Correct ? | 0 Yes | 0 No |
What are the advantages of using friend classes?
Write a recursive program to calculate factorial in c++.
C is to C++ as 1 is to a) What the heck b) 2 c) 10
How would you implement a substr() function that extracts a sub string from a given string?
Which bit wise operator is suitable for checking whether a particular bit is on or off?
What are the advantages and disadvantages of using inline and const?
2 Answers Polaris, TCS, Zimmer Biomet,
What is meant by entry controlled loop? What all C++ loops are exit controlled?
Can you write a function similar to printf()?
Will the inline function be compiled as the inline function always? Justify.
What does asterisk mean in c++?
What is the Difference between "vector" and "array"?
15 Answers Covansys, Gambit, TCS, Wipro,
What do you mean by friend class & friend function in c++?