Ruby:获取对象(类或模块)内所有常量的完整常量名称的最简单方法

发布于 2024-11-09 18:26:46 字数 364 浏览 0 评论 0原文

我有以下结构:

module SomeMod::SubMod
  module Mod1; end
  module Mod2; end
end

我想要获取 SubMod 的所有常量,但我想要对常量的完全限定引用(即 SomeMod::SubMod::Mod1) 目前我正在这样做:

SomeMod::SubMod.constants.map{ |constant| SomeMod::SubMod.const_get constant }

有人可以对此进行改进吗?我可以删除对 SomeMod::SubMod 的重复引用吗?

I have the following Structure:

module SomeMod::SubMod
  module Mod1; end
  module Mod2; end
end

I want to get all constants of SubMod, but I want a fully qualified reference to the Constant (ie. SomeMod::SubMod::Mod1) Currently I'm doing this:

SomeMod::SubMod.constants.map{ |constant| SomeMod::SubMod.const_get constant }

Can someone improve on this? Can I remove the duplicate reference to SomeMod::SubMod?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

笑,眼淚并存 2024-11-16 18:26:46
SomeMod::SubMod.module_eval{ constants.map{|c| const_get c} }

不过,它实际上并没有那么短。

SomeMod::SubMod.module_eval{ constants.map{|c| const_get c} }

It's not really that much shorter, though.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文