What does 'a' and |f| mean below ?
open('myfile.out', 'a') { |f|
f.puts "Hello, world."
}
|
|
The The Think of code like Now, when you pass the block to
You can see how it opens the file, passes it to your block with Another good place to start wrapping your head around them is the
This time, your block gets called three times, and each time a different array element gets Hope this helps, and welcome to Ruby! |
|||
|
|
From the ruby IO doc:
The |
|||
|
|
|
'a' -> Mode in which to open the file ('append' mode) f is a parameter to the block. A block is a piece of code that can be executed (it is a Proc object underneath). Here, f will be the file descriptor, I think. |
|||
|
|
|
1) You call the open method, passing in the two arguments:
2) The method 3) You are appending "hello world" to myfile.out 4) Once the block ends, the IO stream closes. |
||||
|
|
|
The 'a', which stands for append, opens the file in write-only mode and starts writing at the end of the file. If no file exists, a new file is created. Please see the Ruby Docs for more information. The |f| is a block parameter, which is being passed within the {}. For more information on blocks, please see The Pragmatic Programmer's Guide. |
|||
|
|
|
I would highly suggest reading through the help file for the File class for starters. If |
|||
|
|
|
open('myfile.out', 'a') -> Here 'a' means Write only access. Pointer is positioned at end of file. |f| is the file descriptor, it does puts of "Hello, World." Instead of |f|, you can write anything, say |abc| or |line|, it doesn't matter. |
|||
|
|