Will somebody help me understand the classes in OOP. I know basics of it as
class human {
private $name;
function setname ($name){
}
function getname (){
}
}
or suggest me easy to understand books.
Help me to Understand Classes in OOP
Moderator: General Moderators
-
- Forum Newbie
- Posts: 2
- Joined: Wed Dec 14, 2016 1:08 am
Re: Help me to Understand Classes in OOP
Is there something specific you're struggling to understand? Some concept you don't get? For OOP in general, Sandi Metz's Practical Object Oriented Design in Ruby is probably the best book I have encountered on the subject.
-
- Forum Newbie
- Posts: 2
- Joined: Wed Dec 14, 2016 1:08 am
Re: Help me to Understand Classes in OOP
Thank you So much. 
