(在Ruby中)允许混合类方法访问类常量

前端之家收集整理的这篇文章主要介绍了(在Ruby中)允许混合类方法访问类常量前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个定义为常量的类.然后我有一个类方法定义,访问该类常量.这工作正常一个例子:
#! /usr/bin/env ruby

class NonInstantiableClass
    Const = "hello,world!"
    class << self
        def shout_my_constant
            puts Const.upcase
            end
        end
    end

NonInstantiableClass.shout_my_constant

我的问题出现在尝试将此类方法移至外部模块,如下所示:

#! /usr/bin/env ruby

module CommonMethods
    def shout_my_constant
        puts Const.upcase
        end
    end

class NonInstantiableClass
    Const = "hello,world!"
    class << self
        include CommonMethods
        end
    end

NonInstantiableClass.shout_my_constant

Ruby将该方法解释为从模块请求一个常量,而不是类:

line 5:in `shout_my_constant': uninitialized constant CommonMethods::Const (NameError)

那么,你们的什么魔术技巧必须让方法访问类常数?非常感谢.

解决方法

这似乎工作:
#! /usr/bin/env ruby

module CommonMethods
    def shout_my_constant
        puts self::Const.upcase
    end
end

class NonInstantiableClass
    Const = "hello,world!"
    class << self
        include CommonMethods
    end
end

NonInstantiableClass.shout_my_constant

HTH

原文链接:https://www.f2er.com/ruby/271924.html

猜你在找的Ruby相关文章