Fundamentals Flashcards
Remember Ruby snytax
Variables
Any plain, lowercase word. Can consist of letters, digits, and underscores.
ex. ruby_123
Numbers
Integer or series of digits. No commas but underscores allowed.
ex. 1 or -23 or 12_000_000
Floats
Decimal Numbers or scientific notation
ex. 3.14 or 12.043e-04
Strings
Any sort of characters(letters, digits, punctuation) surrounded by quotes.
ex. “sealab” or “These cartoons are great!”
Symbols
Words that look like variables but start with a colon. Used in situations where you need a string but won’t be printing it to the screen.
Ruby responds quicker symbols then strings. (Pointers)
ex. :b or :ponce_de_leon
Constants
Words like variables but are Capitalized. Variables are nouns then Contstants are proper nouns. Contstants can’t be changes once set.
ex. Time or Bunny_Lake
Methods
Methods are verbs usually set to the end of a variable or contstant with a dot. They send a message. ! and ? Are allowed.
ex. front_door.open
Method Argument
Arguments attached to the end of a method. Usually surround by a parentheses and separated by commas and can be chained – inner tubes
ex. front_door.paint( 3, :red ) .dry( 30 ) .close()
Kernel Methods
Common methods that don’t use parentheses with arguments
ex. print “See, no dot.”
Kernel::print they are all class methods
p “See, no dot.” Also works for print
Class/Instant Methods
Rather than a dot a double colon is used after variable or constant
ex. Door: :new( :oak ) Class method is new
Global Variables
Begin with a dollar sign and good throughout your program no matter what class
ex. $1 or $chucky
Instant Variables
Begin with @ and define the attributes of something. Think @ means attribute
ex. front_door with @width
Class Variables
Double @@ used to define many related objects in a given class. @@ attribute all
ex. @@x is a class variable for all doors not just front_door
Blocks
Any code surrounded by curly braces. A group of instructions you can use “do” or “end”
Scope is all information before block.
ex. 2.times { print “yes win!” }
Block Arguments
Set of variables surrounds by pipe characters and separated by commas used at the beginning of a block. Tunnel in which variables enter the block
ex. |x,y|
Ranges
2 values surrounded by parentheses and separated by ellipsis
ex. (1..5) is 1 through 5 or (‘a’..’z’)
If 3 … Used the last range is excluded (0…5) is 0 through 4
Arrays
List surround by square brackets
ex. [1,2,5] or [‘coat’, ‘mittens’, ‘gloves’]
Hashes
Dictionary surrounds by curly braces because they can be easy to search through. Unlike an array hashes are not kept in particular order. Keys => Values
ex. { ‘a’ => ‘aardvark’, ‘b’ => ‘badger’ }
code_words[‘a’] will return aardvark
Regular Expressions (regexp)
Characters surround by slashes used to find words or patterns in text.
ex. /ruby/ or /[0-9]+/
Operators
- % &&»_space; are all examples
Keywords
alias end BEGIN break end are all examples use them wrong will lead to syntax error
===
Triple Equals is not as strict as ==
Great for looking for a value in a range
ex. 1905 === 19895..1913
case..when statement
They must be used together.
case is followed by a value which is compared to when keywords
ex. case year
when 1984
“Born.”
Scope
A field of vision inside methods and blocks.
Only the names inside the method are good for it’s scope.
ex. opus_magum = true def Mom success = opus_magum end opus_magum is out of Mom scope
new
Method that creates a new, blank object. It also calls the initialize method automatically.
ex. todays_wishes = Wishmaker.new
Ruby
Everything is an object,
- You define things
- Then you put them into action
: :
Class methods are usually called with a double colon but a period is fine as well.
ex. Elevator: :maintenance_password
backtrace
When you get an error the most important aspect is the beginning
Nil
Without value and it can never be “true”
Ex. plastic_cup = nil
unless
Will show “nil” and “false”
The opposite of “if” which will not
*If a is true and b is not true
Ex. If plastic_cup unless glass_cup
==
Id check and is method
Ex. If carrot == true
print “I love vegetables”
end
«
Concatenation operator which means to append or add to the end
gets
Kernel methods that will respond with a sting of what was typed
[ ]
Index for a hash to find definition in a hash
each
Method for arrays, hashes, and strings. It will go through each item
gsub
Global substitution which will search and replace.
Ex. idea.gsub! (real, code )
strip
Method that Removes all additional spaces and blank lines in a string
File Class Methods
File::read( “file_name.txt” )
File::rename( “file_name.txt” , “file_name1.txt” )
File::delete( “file_name.txt” )
‘w’ = new file ‘r’ = read ‘a’ = add
sort_by
A method that iterates or cycles through a list of things
Other methods are next and break
Domination
Learning how to use the answers methods give back
elseif
Used when u want to see if an object is true or false.
next
Used to skip to the next item in a list
break
Kicks you if an iterating loop
def
Used to define methods
Class
Used to define classes