Ad

Sunday, March 6, 2016

Code School Ruby Programming Metaprogramming Scope Notes and Course Tutorial Review

What is scope in Ruby? 

This is the note for Code School CodeTV Series - Metaprogramming Scope online learn-to-code tutorial. It's a great, short 5 minute class, which explains computer science fundamental concept - Scope in the context of Ruby programming.

Code School 



Free weekend March 2016
CodeTV
Length: 5:17 min
Rating: 5 stars. Concise, useful, professional
Programming fundamentals - Metaprogramming Scopes
Agenda: 1. What are Scopes? 2. Meet your 'self' 3. Changing Scope 4. Instances and Local Variables 5. Conclusion
Background: in Ruby context

- In Ruby Scope, scope is what's visible such as variables, methods, and objects. Scope can change constantly. It's important to know the current object, 'self' and what it can see constantly. 
- Need to understand 'self' first. Self is the current object. 
- When ask Ruby for self, you will get main, and the class of self is object. Main is what self uses to refer to itself. You are at the top level scope!
[1] pry(main)> self
=>main
- self can only see things at the same level

my_class.rb file
------
puts self

class MyClass
puts self

def my_method
puts self
end
end
------

- the above code, first self outputs main, the second is MyClass, MyClass.new.my_method will return an instance of MyClass. Self is constantly changing as the program executes. 
- The self can change time there's a class or module definition, or within methods.
- Instance and local variables : .other_method method can access instance variables but not local variables. Local variables are truly private. 

Note: not all content included in the class is noted here.

No comments:

Post a Comment

React UI, UI UX, Reactstrap React Bootstrap

React UI MATERIAL  Install yarn add @material-ui/icons Reactstrap FORMS. Controlled Forms. Uncontrolled Forms.  Columns, grid