該腳本中f.seek(0)
的用途是什麼?爲什麼我們需要rewind(current_file)
,如果文件已經被程序打開了?.seek在ruby中的含義
input_file = ARGV[0]
def print_all(f)
puts f.read()
end
def rewind(f)
f.seek(0)
end
def print_a_line(line_count,f)
puts "#{line_count} #{f.readline()}"
end
current_file = File.open(input_file)
puts "First Let's print the whole file:"
puts # a blank line
print_all(current_file)
puts "Now Let's rewind, kind of like a tape"
rewind(current_file)
puts "Let's print the first line:"
current_line = 1
print_a_line(current_line, current_file)
http://ruby-doc.org/core-2.0/IO.html#method-i-seek – Matt
它**裏面有一個名爲'rewind'的方法,是不是給了你一個提示?如果不是,你不能閱讀文檔嗎? – meagar
我完成我解決它謝謝反正 –