Created
August 18, 2010 15:21
-
-
Save nusco/535107 to your computer and use it in GitHub Desktop.
Spell: Lazy Instance Variable
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ============================= | |
| # Spell: Lazy Instance Variable | |
| # ============================= | |
| # Wait until the first access to initialize an instance variable. | |
| class C | |
| def attribute | |
| @attribute = @attribute || "some value" | |
| end | |
| end | |
| obj = C.new | |
| obj.attribute # => "some value" | |
| # For more information: http://www.pragprog.com/titles/ppmetr/metaprogramming-ruby |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment