gpt4 book ai didi

ruby - 方法名称在 Object#singleton_methods 返回的列表中,但无法使用 Object#singleton_method 访问

转载 作者:数据小太阳 更新时间:2023-10-29 08:02:29 28 4
gpt4 key购买 nike

我对 Object#singleton_method 之间的区别感到困惑和 Object#singleton_methods .

我认为 Object#singleton_methods 中的结果是 !!Object#singleton_method(:name) 的真集, 但似乎不一样。

这是示例脚本:

require "active_support/deprecation"
# [:debug=, :debug]
ActiveSupport::Deprecation.singleton_methods(false).grep(/debug/)
# [:debug=, :debug]
ActiveSupport::Deprecation.singleton_methods.grep(/debug/)

begin
ActiveSupport::Deprecation.singleton_method(:debug) # exception
rescue => e
puts e.backtrace
raise
end

gem 文件是

# frozen_string_literal: true

source "https://rubygems.org"

git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }

# gem "rails"
gem 'activesupport', '5.1.6'

结果是这样的:

% bundle install
Fetching gem metadata from https://rubygems.org/..............
Resolving dependencies...
Using concurrent-ruby 1.0.5
Using i18n 1.0.0
Using minitest 5.11.3
Using thread_safe 0.3.6
Using tzinfo 1.2.5
Using activesupport 5.1.6
Using bundler 1.16.1
Bundle complete! 1 Gemfile dependency, 7 gems now installed.
Use `bundle info [gemname]` to see where a bundled gem is installed.
% bundle exec ruby test.rb
test.rb:8:in `singleton_method'
test.rb:8:in `<main>'
Traceback (most recent call last):
1: from test.rb:8:in `<main>'
test.rb:8:in `singleton_method': undefined singleton method `debug' for `ActiveSupport::Deprecation' (NameError)

我预计 ActiveSupport::Deprecation.singleton_method(:debug)会返回 #<Method: ActiveSupport::Deprecation.debug> , 但抛出异常。

我不明白为什么。我当然知道singleton_method里面的基本用法和 singleton_methods :

# everything is OK!
class Sample; end

class << Sample
def test_method; end
end

# These two expressions behave as I expect.
## [:test_method]
Sample.singleton_methods(false).grep(/test_method/)
## #<Method: Sample.test_method>
Sample.singleton_method(:test_method)

谢谢。

最佳答案

更新:看起来这是 Ruby 中的一个错误。 Vasiliy Ermolovich创造了an issue连同一个补丁来解决它。该修复程序已合并,因此将在即将发布的更新中解决。


恐怕这不是您问题的完整答案,但经过一些挖掘后,我已经能够制作一个最小的示例来演示同样的事情,而不依赖于 Active Support。我认为这可能对您的调查仍然有用,或者可能会帮助其他人提供完整的解释。

似乎 singleton_method 的意外行为来自 Module.prepend 的使用,ActiveSupport::Deprecation 使用 here .

这个小例子可以看出同样的错误:

module Empty; end

class MyClass
singleton_class.prepend(Empty)
def self.my_method
puts "my method called"
end
end

p MyClass.singleton_methods(:false)
m = MyClass.singleton_method(:my_method)
m.call

运行这个给出:

❯ ruby example.rb
[:my_method]
Traceback (most recent call last):
1: from example.rb:11:in `<main>'
example.rb:11:in `singleton_method': undefined singleton method `my_method' for
`MyClass' (NameError)

随着对 prepend 的调用被移除,这将按您预期的方式运行:

❯ ruby example.rb
[:my_method]
my method called

关于ruby - 方法名称在 Object#singleton_methods 返回的列表中,但无法使用 Object#singleton_method 访问,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49597148/

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