gpt4 book ai didi

ruby - 这个带有 struct 的对象构造在内部如何工作?

转载 作者:行者123 更新时间:2023-12-04 03:36:11 24 4
gpt4 key购买 nike

努力理解如何以这种方式创建对象。构造此对象时,这里的幕后发生了什么?

class UserPreview < Struct.new(:gid, :email, :name)
end

u = UserPreview.new(1, 'hans@peter.de', 'Hans Peter')
=> #<struct UserPreview gid=1, email="hans@peter.de", name="Hans Peter">

最佳答案

我认为您的代码中需要讨论三件事:

# 1
Struct.new(:gid, :email, :name)

# 2
class UserPreview < OtherClass
end

# 3
u = UserPreview.new(1, 'hans@peter.de', 'Hans Peter')

从#2 开始:

UserPreview 是作为 OtherClass 的标准子类创建的(在本例中是 Struct.new 调用的结果)。我们看到子类没有添加任何新方法或属性,因此它本质上与 OtherClass 是同一个类,只是名称不同。在 Ruby 中,您可以将其简化为:

UserPreview = OtherClass

因为类只是(类 Class 的)对象。

让我们看看#1:

这里发生的是我们用给定的参数构造一个新的 Struct 实例。 Struct 是使用 C 在 Ruby 中手动实现的。您可以查看 code on Github .我认为没有什么特别令人惊讶的事情发生。给定的符号用于创建一个新类(匿名或命名)并设置提供的成员(see here)

最后让我们看看#3:

# 3
u = UserPreview.new(1, 'hans@peter.de', 'Hans Peter')

在本例中为 C function rb_struct_initialize_m叫做。由于您只提供了一个参数列表,因此代码只遍历成员字段并依次设置每个参数:

for (long i=0; i<argc; i++) {
RSTRUCT_SET(self, i, argv[i]);

关于ruby - 这个带有 struct 的对象构造在内部如何工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66855633/

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