Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Ruby Ruby Blocks Blocks Practice Build a Monster Class: Part 1

attr_reader : name, this is to avoid using @sign within the class, could someone elaborate

Jason said from 1:12 to 1:15 that attr_reader is used to avoid @ sign within the class, i am not sure if i got this, could someone elaborate this please.

1 Answer

Note that within a method in a class, it has direct access to other methods within the class.

@ is required if there is no attr_reader/attr_writer. Otherwise, Ruby automatically creates a method and the @ is unnecessary. I personally prefer to always use the @, though, because it makes it clear that it is an attribute.