小于标志(<)的含义是什么意思?

时间:2014-05-20 01:36:05

标签: ruby

以下代码来自Ruby on Rails。

  ...some code here...

  unless ActionController::Base < ActionController::Testing
    ActionController::Base.class_eval do
      include ActionController::Testing
    end
  end

  ... some code here...

ActionController::Base < ActionController::Testing在这种情况下的含义是什么?

1 个答案:

答案 0 :(得分:5)

它是继承的测试并返回一个布尔值。

如果以下陈述为真,则表示左侧是右侧的子类。

ActionController::Base < ActionController::Testing

有关详细信息,请参阅documentation