What's the advantages of using classes instead of methods.. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

What's the advantages of using classes instead of methods..

Hello friends... Im just wondering of comprehending the advantages of using classes instead of methods... I've just wrote a couple lines of code to calculate the area of rectangle by using both, the classes n methods concepts.. but as its clear, using methods is simple n shorter than classes so, what makes sense of using classes instead of methods...

1st Sep 2017, 10:02 AM
UbuUunTu✔️
UbuUunTu✔️ - avatar
1 Answer
+ 1
Here is my simple code 😇😁 class Box def initialize(w, h) @width = w @height = h end def area @width * @height end end p1 = Box.new(gets.to_i, gets.to_i ) puts p1.area puts "===============++++================" def calArea (w, h) print w*h end puts calArea(gets.to_i, gets.to_i)
1st Sep 2017, 10:03 AM
UbuUunTu✔️
UbuUunTu✔️ - avatar