什么.seek在红宝石中意味着什么

时间:2014-02-07 01:35:22

标签: ruby-on-rails ruby linux windows

此脚本中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)

1 个答案:

答案 0 :(得分:22)

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

打电话时
rewind(current_file)

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

current_file = File.open(input_file)

到倒带方法,它将“寻找”到位置0,这是文件的开头。

例如,您可以创建另一个名为almost_rewind的方法并编写:

def almost_rewind(f)
  f.seek(-10)
end

这将在您的信息流中返回10个位置。