Ruby program to implement single inheritance

Ruby Example: Write a program to implement single inheritance.
Submitted by Nidhi, on January 27, 2022

Problem Solution:

In this program, we will create a superclass with constructor and method then we will inherit superclass into the subclass.

Program/Source Code:

The source code to implement single inheritance is given below. The given program is compiled and executed successfully.

# Ruby program to implement 
# single inheritance.

# Super class
class SuperClass
	def initialize
		puts "SuperClass constructor";
	end

	def SayHello
		puts "Say hello from SuperClass";
	end
end

class SubClass < SuperClass
	
	def initialize
	    puts "SubClass constructor";
	end
end

subObj = SubClass.new;
subObj.SayHello;

Output:

SubClass constructor
Say hello from SuperClass

Explanation:

In the above program, we created two classes SuperClass, SubClass. And, we inherited the SuperClass into SubClass using the "<" operator. After that, we created the object of SubClass and called the SayHello() from the SubClass object and printed the appropriate message.

Ruby Constructors/Destructors, Inheritance Programs »





Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.