我正在从Poignant Guide to Ruby中学习 Ruby ,在一些代码示例中,我遇到了似乎用于相同目的的双冒号和点的用法:
File::open( 'idea-' + idea_name + '.txt', 'w' ) do |f|
f << idea
end
在上面的代码中,双冒号用于访问类的open
方法File
。但是,我后来遇到了出于相同目的使用点的代码:
require 'wordlist'
# Print each idea out with the words fixed
Dir['idea-*.txt'].each do |file_name|
idea = File.read( file_name )
code_words.each do |real, code|
idea.gsub!( code, real )
end
puts idea
end
这一次,使用点来访问类的read
方法File
。有什么区别:
File.read()
和
File::open()