我正在尝试用 Ruby 制作一个文本编辑器,但我不知道如何使用gets.chomp
.
到目前为止,这是我的代码:
outp =
def tor
text = gets.chomp
outp = "#{outp}" += "#{text}"
puts outp
end
while true
tor
end
方法中的普通变量,如outp
,仅在该方法内可见(AKA 具有范围)。
a = "aaa"
def x
puts a
end
x # =>error: undefined local variable or method `a' for main:Object
这是为什么?一方面,如果您正在编写一个方法并且您需要一个计数器,您可以使用一个名为i
(或其他)的变量,而不必担心i
在您的方法之外命名的其他变量。
但是......你想在你的方法中与外部变量进行交互!这是一种方式:
@outp = "" # note the "", initializing @output to an empty string.
def tor
text = gets.chomp
@outp = @outp + text #not "#{@output}"+"#{text}", come on.
puts @outp
end
while true
tor
end
@
赋予此变量更大的可见性(范围)。
这是另一种方式:将变量作为参数传递。这就像对您的方法说:“在这里,使用这个。”。
output = ""
def tor(old_text)
old_text + gets.chomp
end
loop do #just another way of saying 'while true'
output = tor(output)
puts output
end