该脚本中f.seek(0)的目的是什么?如果程序已经打开了文件,为什么我们需要rewind(current_file)

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)

最佳答案

它在流中寻找(“转到”,“试图寻找”)给定位置(作为整数)。在您的代码中,定义了一个名为rewind的新方法,该方法带有一个参数。当您用

rewind(current_file)

您发送current_file(您从磁盘或其他任何地方打开的文件),其定义为:
current_file = File.open(input_file)

到rewind方法,它将“搜索”到位置0,这是文件的开头。

您还可以创建另一个名为almost_rewind的方法并编写:
def almost_rewind(f)
  f.seek(-10, IO::SEEK_END)
end

从流的END开始,这将在流中向后10个位置。

关于ruby-on-rails - .seek在 ruby 中意味着什么,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21617708/

10-14 17:23