I do not understand the use of the question mark (?) in Ruby. Sometimes it appears like this:
assert !product.valid?
sometimes I see it in an if construct. Could you tell me its meaning?
|
I do not understand the use of the question mark (
sometimes I see it in an |
||||
|
|
|
It is a code style convention; it indicates that a method returns a boolean value. The question mark is a valid character at the end of a method name. |
|||||
|
|
Also note For example:
Alternately in ruby 1.8 you can do:
or in ruby 1.9:
|
|||||||||||
|
|
It's a convention in Ruby that methods that return boolean values end in a question mark. There's no more significance to it than that. |
|||
|
|
|
In your example it's just part of the method name. In Ruby you can also use exclamation points in method names! Another example of question marks in Ruby would be the ternary operator.
|
|||||
|
|
In your example
Is actually a function call and calls a function named |
|||||||
|
|
I believe it's just a convention for things that are boolean. A bit like saying "IsValid". |
|||
|
|
|
It's also used in regular expressions, meaning "at most one repetition of the preceding character" for example the regular expression |
||||
|
|