Home
Ruby
ActiveRecord
Array
CGI
Class
Collections
Database
Date
Design Patterns
Development
File Directory
GUI
Hash
Language Basics
Method
Network
Number
Rails
Range
Reflection
Statement
String
Threads
Time
Tk
Unit Test
Windows Platform
XML
Procs « Method « Ruby
Ruby
Method
Procs
1.
A Proc is an object that holds a chunk of code.
2.
Proc object picks up the surrounding environment when it is created.
3.
A quicker way to create our hello Proc
4.
Ruby lets you store procedures or procs, as they're called as objects, complete with their context.
5.
coax a method to convert an associated block to a proc on the fly.
6.
Use Proc.new, proc and lamda to create methods
7.
Use proc to create a function
8.
Use Proc.new to create a new method