Ruby基础知识-3.基本输入输出
1.1 输入
1.1.1 控制台输入
控制台输入通过gets方式获取,即通过STDIN.gets获取输入字符串。gets会以字串传回使用者的输入,取得的字串会包括换行字元。如果需要取出换行字元,则可以使用gets.chomp。获取到的内容都是字符串,如果需要,可以通过to_i,to_f转换成整型和浮点型处理。
例如:
print "Input your name: "
name = gets
puts "Hello, #{name}!"
1.1.2 文件输入
文件读取可以通过file.read方式。
例如:
print "File name: "
name = gets.chomp
file = open(name, "r") # "r"表示档案供读取使用
while line = file.gets
print line
end
file.close
1.1.3 命令行参数输入
puts "#{ARGV[0]} #{ARGV[1]}"
ruby input.rb hello everybody
1.2 输出
1.2.1 单行输出
print "This ", "is ", "a ", "test", "!", "\n"
1.2.2 换行输出
puts "This ", "is ", "a ", "test", "!"
1.2.3 格式化输出
printf("%d %.2f %s\n", 1, 99.3, "Justin") #1 99.30 Justin
1.2.4 字符串格式化输出
x = sprintf "%d %.2f %s", 1, 99.3, "Justin"
puts x
x = "%d %.2f %s" % [1, 99.3, "Justin"]
puts x
1.3 注释
1.3.1 单行注释
单行注释使用#标识符注释。
例如:puts "abc".upcase #output "ABC"
1.3.2 多行注释
由=begin和=end的配对组成。
例如:
=begin
args:xxx
return:xxx
=end