Blocks and variable basics Flashcards
What is the purpose of a Variable?
to label and store data in memory.
This data can then be used throughout your program.
What is the value of b at this point?
Why?
irb :001 > a = 4 => 4 irb :002 > b = a => 4 irb :003 > a = 7 => 7
b remains 4, while a was re-assigned to 7.
Variables point to values in memory, and are not deeply linked to each other.
what does gets method stand for?
gets stands for “get string”
what does variable’s scope determine?
where in a program a variable is available for use
how is a variable’s scope defined?
defined by where the variable is initialized or created.
In Ruby, variable scope is defined by a ___ ?
block.
In Ruby, what is a block?
A block is a piece of code following a method invocation, usually delimited by either curly braces {} or do/end.
Be aware that not all do/end pairs imply a block*. The for…do/end is not a block, it is part of the Ruby language and not a method invocation.
______ scope can access variables initialized in an _____ scope , but not vice versa.
Inner
outer
When are blocks created?
A new block is created when we use each, times and other method invocations, followed by {} or do/end. And when using iterators such as loop and each.
List examples of ruby blocks
.times…do/end, .each…do/end, loop…do/end
List examples of things that are NOT ruby blocks
while, until, for…do/end, if…end, unless..end
How do I identify a block?
If the {} or do/end immediately follows a method invocation (E.g. [object].[method]), it is considered a block (and thereby creates a new scope for variables). And an iterator such as loop, is a block. But while, until, and for…do/end code is part of the Ruby language and not a method invocation. Thus they are not blocks.
How do blocks affect variable scope?
Variables created inside blocks are not accessible outside the block, because a new inner scope is created inside the block. But variables created inside code that is not a block, is accessable in outer scope, because a new inner scope was not created.
Do blocks affect variables created in outer scope?
No. Variables created in outer scope, outside blocks or non blocks is ALWAYS accessable inside blocks and non blocks.
Inner scope can access variables initialized in an outer scope, but not vice versa.
So the outer scope cannot access variables initialized in an inner scope.