* doc/syntax/assignment.rdoc (Local Variables and Methods): Fixed

example showing caching of a method's results into a local variable.
  Added not about using an explicit receiver to call a method that
  matches a local variable.  Suggested by markov_twain on twitter.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38901 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
drbrain 2013-01-23 01:35:16 +00:00
Родитель 98b82acf6f
Коммит 2784129653
2 изменённых файлов: 12 добавлений и 1 удалений

Просмотреть файл

@ -1,3 +1,10 @@
Wed Jan 23 10:34:47 2013 Eric Hodel <drbrain@segment7.net>
* doc/syntax/assignment.rdoc (Local Variables and Methods): Fixed
example showing caching of a method's results into a local variable.
Added not about using an explicit receiver to call a method that
matches a local variable. Suggested by markov_twain on twitter.
Wed Jan 23 10:20:08 2013 Eric Hodel <drbrain@segment7.net>
* lib/README: Fixed typo. Patch by Pradeep Sahoo.

Просмотреть файл

@ -86,11 +86,15 @@ code, for example:
42 # pretend this takes a long time
end
big_calculation = big_calculation
big_calculation = big_calculation()
Now any reference to +big_calculation+ is considered a local variable and will
be cached. To call the method, use <code>self.big_calculation</code>.
You can force a method call by using empty argument parentheses as shown above
or by using an explicit receiver like <code>self.</code>. Using an explicit
receiver may raise a NameError if the method's visibility is not public.
Another commonly confusing case is when using a modifier +if+:
p a if a = 0.zero?