前端之家收集整理的这篇文章主要介绍了
检查模块是否存在于ruby中,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我从cli
上传递的参数动态定义一个模块
名称,例如
required :: Module ::#{ARGV.first}
有没有办法检查该模块是否存在?另外,我如何运行方法不知道它的确切名称?
使用const_get
方法检查模块的存在:
begin
mod = required::Module::const_get "ModuleName"
#It exists
rescue NameError
#Doesn't exist
end
原文链接:https://www.f2er.com/ruby/273781.html