加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

如何在Ruby中将类标记为Deprecated?

发布时间:2020-12-16 19:14:04 所属栏目:百科 来源:网络整理
导读:在 Ruby中(甚至更多:Rails)它是 easy to mark methods as deprecated. 但是如何将整个类标记为已弃用?我想在使用类时发出警告: class BillingMethodendBillingMethod.new #= DEPRECATION WARNING: the class BillingMethod is deprecated. Use PaymentMet
在 Ruby中(甚至更多:Rails)它是 easy to mark methods as deprecated.

但是如何将整个类标记为已弃用?我想在使用类时发出警告:

class BillingMethod
end

BillingMethod.new #=> DEPRECATION WARNING: the class BillingMethod is deprecated. Use PaymentMethod instead.

或者在继承中使用它时:

class Sofort < BillingMethod
end

Sofort.new #=> DEPRECATION WARNING: the class BillingMethod is deprecated. Use PaymentMethod instead.

或者,在嵌套类中使用时:

class BillingMethod::Sofort < BillingMethod
end

BillingMethod::Sofort.new #=> DEPRECATION WARNING: the class BillingMethod is deprecated. Use PaymentMethod instead.

我认为class_eval区块将成为发出此类警告的地方.那是正确的地方吗?还是有更好的方法?

解决方法

您可以使用 const_missing来弃用常量,并通过扩展来使用类.

当引用未定义的常量时,将调用const_missing.

module MyModule

  class PaymentMethod
    # ...
  end

  def self.const_missing(const_name)
    super unless const_name == :BillingMethod
    warn "DEPRECATION WARNING: the class MyModule::BillingMethod is deprecated. Use MyModule::PaymentMethod instead."
    PaymentMethod
  end
end

这允许引用MyModule :: BillingMethod的现有代码继续工作,并警告用户他们使用已弃用的类.

这是我迄今为止看到的最令人贬低的课程目的.

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读