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 »


ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT


Top MCQs

Comments and Discussions!




Languages: » C » C++ » C++ STL » Java » Data Structure » C#.Net » Android » Kotlin » SQL
Web Technologies: » PHP » Python » JavaScript » CSS » Ajax » Node.js » Web programming/HTML
Solved programs: » C » C++ » DS » Java » C#
Aptitude que. & ans.: » C » C++ » Java » DBMS
Interview que. & ans.: » C » Embedded C » Java » SEO » HR
CS Subjects: » CS Basics » O.S. » Networks » DBMS » Embedded Systems » Cloud Computing
» Machine learning » CS Organizations » Linux » DOS
More: » Articles » Puzzles » News/Updates

© https://www.includehelp.com some rights reserved.