Answer Posted / rsn
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.
Class Base
{
public:
int i;
};
class Derived : public Base
{
public:
int j;
};
int main()
{
Base Bobj;
Derived Dobj;
Bobj = Dobj; //Here Dobj contains both i and j.
//But only i is copied to Bobj.
}
| Is This Answer Correct ? | 126 Yes | 10 No |
Post New Answer View All Answers
What is difference between data abstraction and encapsulation?
Why multiple inheritance is not possible?
Why is object oriented programming so hard?
Why is it so that we can have virtual constructors but we cannot have virtual destructors?
How can you overcome the diamond problem in inheritance?
How many human genes are polymorphic?
Why is polymorphism needed?
What is static modifier?
What are the 4 main oop principles?
This program numbers the lines found in a text file. Write a program that reads text from a file and outputs each line preceded by a line number. Print the line number right-adjusted in a field of 3 spaces. Follow the line number with a colon, then one space, then the text of the line. You should get a character at a time and write code to ignore leading blanks on each line. You may assume that the lines are short enough to fit within a line on the screen. Otherwise, allow default printer or screen output behavior if the line is too long (i.e., wrap or truncate). A somewhat harder version determines the number of spaces needed in the field for the line numbers by counting lines before processing the lines of the file. This version of the program should insert a new line after the last complete word that will fit within a 72-character line.
What is polymorphism in oops with example?
What does enum stand for?
What is polymorphism and types?
What is destructor oops?
write a program to find 2^n+1 ?