Starting Out With Visual C# (5th Edition)
Starting Out With Visual C# (5th Edition)
5th Edition
ISBN: 9780135183519
Author: Tony Gaddis
Publisher: PEARSON
Expert Solution & Answer
Book Icon
Chapter 11.2, Problem 11.6CP

Explanation of Solution

Given code:

//Line 1

//Base class declaration of "Vegetable"

class Vegetable

{

  #Line 2

      #Define the virtual message() method

        public virtual void message()

        {

  //Line 3

           //Print the message

            MessageBox.Show("I'm a vegetable.");

        }

}

#Line 4   

/*Derived class declaration of "Potato" which inherits base class properties. */

class Potato : Vegetable

{

  #Line 5

      /* overrides the base class method name "message()"

      method which displays the message on the output

      screen. */

        public override void message()

        {

  //Line 6

           //Print the message

            MessageBox.Show("I'm a potato.");

        }

}

//Line 7  

/*Driver code create an object for base class */

Vegetable v = new Potato();

//Line 8

//create an object for derived class

Potato p = new Potato();

//Line 9

//call the method "message()" using base class object

v...

Blurred answer

Chapter 11 Solutions

Starting Out With Visual C# (5th Edition)

Knowledge Booster
Background pattern image
Recommended textbooks for you
Text book image
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Text book image
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Text book image
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
Text book image
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Text book image
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Text book image
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education