gpt4 book ai didi

Ruby 变量作用域

转载 作者:数据小太阳 更新时间:2023-10-29 07:32:27 25 4
gpt4 key购买 nike

我一直在考虑学习一种新的用于 Web 开发的动态脚本语言,在对 Python 和 Ruby 苦苦思索之后,因为我真的很喜欢这两者,所以我决定选择 Ruby(这几乎可以归结为掷硬币和事实上,英国的 RoR 职位比 Python/Django 还多)。我的问题是关于 Ruby 中的作用域。我是否必须在方法内声明类属性才能从其他方法访问它?

例如,我做不到

class Notes
@notes = ["Pick up some milk"]

def print_notes
puts @notes
end
end

看来我必须在构造函数中声明我想使用的属性?这个例子有效:

class Notes
def initialize
@notes = ["Pick up some milk"]
end

def print_notes
puts @notes
end
end

这样对吗?我注意到在示例 1 前面加上 @@ 而不是 @ 是可行的,但据我了解,如果该类有一个子类(比如 Memo),那么在 Notes 中对以 @@ 为前缀的属性所做的任何更改都会更改 Memo 中的值吗?

抱歉,如果这是一个重复的问题,只是一个迷路的菜鸟:)

最佳答案

当您在类中而不是在构造函数或任何实例方法中声明 @notes 时,您就是在使 @notes 成为 < em>类的实例本身。每个类也作为 Class 的实例存在。

class Notes
@notes = ["Pick up some milk"]

def print_notes
puts @notes
end
end
# => nil
Notes.instance_variable_get(:"@notes")
# => ["Pick up some milk"]

所以答案是肯定的,您确实需要在构造函数或其他一些实例方法中声明实例变量。我认为您更愿意这样做:

class Notes
def notes
@notes ||= []
end

def print_notes
puts @notes
end
end

note = Notes.new
note.notes << "Pick up some milk"
note.notes
# => ["Pick up some milk"]

另外:

只是避免类变量,例如@@notes。请改用类实例变量(这是您无意中所做的)。

这样做:

class Notes
def self.notes
@notes ||= []
end
end

不是这个:

class Notes
def notes
@@notes ||= []
end
end

当你想要一个类变量时。后者会给你带来麻烦。 (但我认为这是另一回事。)

关于Ruby 变量作用域,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15270956/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com