gpt4 book ai didi

ruby - ruby 的 Hash.replace 或者 Array.replace 有什么用?

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

我总是在 Array 和 Hash 文档中看到 replace,我一直认为它很奇怪。

我确定我已经做过很多次这样的事情:

a = [:a, :b, :c, :d]

...

if some_condition
a = [:e, :f]
end

但我从没想过用这个代替:

a = [:a, :b, :c, :d]

...

if some_condition
a.replace [:e, :f]
end

我认为这是预期用途。这真的可以节省内存,或者有其他好处,还是只是一种风格?

最佳答案

a = [:e, :f] 和 a.replace [:e, :f],

两条语句生成指令如下:

1.

a = [:a, :b, :c, :d]
a = [:e, :f]

说明:

ruby --dump=insns test.rb

== disasm: <RubyVM::InstructionSequence:<main>@test.rb>=================
local table (size: 2, argc: 0 [opts: 0, rest: -1, post: 0, block: -1] s1)
[ 2] a
0000 trace 1 ( 1)
0002 duparray [:a, :b, :c, :d]
0004 setdynamic a, 0
0007 trace 1 ( 2)
0009 duparray [:e, :f]
0011 dup
0012 setdynamic a, 0
0015 leave

2.

a = [:a, :b, :c, :d]
a.replace([:e, :f])

说明:

ruby --dump=insns test.rb

== disasm: <RubyVM::InstructionSequence:<main>@test.rb>=================
local table (size: 2, argc: 0 [opts: 0, rest: -1, post: 0, block: -1] s1)
[ 2] a
0000 trace 1 ( 1)
0002 duparray [:a, :b, :c, :d]
0004 setdynamic a, 0
0007 trace 1 ( 2)
0009 getdynamic a, 0
0012 duparray [:e, :f]
0014 send :replace, 1, nil, 0, <ic:0>
0020 leave

replace 方法并不比赋值运算符快,但是replace 可以就地修改接收者数组,而且,replace 方法确实节省了内存,这个可以从rb_ary_replace的源码中看出。

VALUE
rb_ary_replace(VALUE copy, VALUE orig)
{
rb_ary_modify_check(copy);
orig = to_ary(orig);
if (copy == orig) return copy;

if (RARRAY_LEN(orig) <= RARRAY_EMBED_LEN_MAX)
{
VALUE *ptr;
VALUE shared = 0;

if (ARY_OWNS_HEAP_P(copy))
{
xfree(RARRAY_PTR(copy));
}
else if (ARY_SHARED_P(copy))
{
shared = ARY_SHARED(copy);
FL_UNSET_SHARED(copy);
}
FL_SET_EMBED(copy);
ptr = RARRAY_PTR(orig);
MEMCPY(RARRAY_PTR(copy), ptr, VALUE, RARRAY_LEN(orig));
if (shared)
{
rb_ary_decrement_share(shared);
}
ARY_SET_LEN(copy, RARRAY_LEN(orig));
}
else
{
VALUE shared = ary_make_shared(orig);
if (ARY_OWNS_HEAP_P(copy))
{
xfree(RARRAY_PTR(copy));
}
else
{
rb_ary_unshare_safe(copy);
}
FL_UNSET_EMBED(copy);
ARY_SET_PTR(copy, RARRAY_PTR(orig));
ARY_SET_LEN(copy, RARRAY_LEN(orig));
rb_ary_set_shared(copy, shared);
}
return copy; }

关于ruby - ruby 的 Hash.replace 或者 Array.replace 有什么用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10117728/

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