Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

What are the three levels of method access control for classes and what do they signify? What do they imply about the method?

Answer Posted / Abhishek Kumar Rai

In Ruby, there are three levels of method access control for classes: public, protected, and private. nn- Public methods (denoted with no modifier) can be called from anywhere, even outside the class.n- Protected methods (prefixed with a single 'at' symbol '@') can only be called within the class and its subclasses.n- Private methods (prefixed with two 'at' symbols '@@') can only be called from within the defining class itself.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Tell me the role of modules and mixins in ruby?

1