Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to test whether a class inherits from another class, but there doesn't seem to exist a method for that.

class A
end

class B < A
end

B.is_a? A 
=> false

B.superclass == A
=> true

A trivial implementation of what I want would be:

class Class
  def is_subclass_of?(clazz)
    return true if superclass == clazz
    return false if self == Object
    superclass.is_subclass_of?(clazz)
  end
end

but I would expect this to exist already.

share|improve this question

2 Answers

up vote 74 down vote accepted

Just use the < operator

B < A # => true
A < A # => false

or use the <= operator

B <= A # => true
A <= A # => true
share|improve this answer
5  
Another season, another reason, for using Ruby :) – edgerunner Dec 28 '10 at 13:57
Great tip. I do so love Ruby... – Mike Bethany Dec 28 '10 at 23:47
This works...curious if anyone knows why is_a? doesn't though? Thanks! – Brian Armstrong Oct 24 '12 at 4:46
3  
@Brian Because is_a? translates to is instance of. B isn't an instance of A, B.new is though (B.new.is_a? A # => true). – Marcel Jackwerth Oct 24 '12 at 7:44
1  
Hmm, strange syntax (wouldn't have been my first guess), but thanks for the clarification! – Brian Armstrong Oct 26 '12 at 1:31
show 2 more comments

Also available:

B.ancestors.include? A

This differs slightly from the (shorter) answer of B < A because B is included in B.ancestors:

B.ancestors
#=> [B, A, Object, Kernel, BasicObject]

B < B
#=> false

B.ancestors.include? B
#=> true

Whether or not this is desirable depends on your use case.

share|improve this answer
11  
More readable: B <= B (same result as B.ancestors.include? B). – Marcel Jackwerth Dec 28 '10 at 14:49
Update: The immediately preceding solution works with 1.9+ whereas there is no "ancestors?" in 1.9. – Barry Nov 14 '11 at 6:40
@Barry I do not see ancestors? mentioned in any answer on this page, including this one. To what are you referring? – Phrogz Nov 15 '11 at 16:30
Update^2: The immediately preceding solution works with 1.9+ whereas I don't see "ancestors" in 1.9. --- Ambiguity corrected. My bad, I thought I was asking a question while using the overformal "Are these double-quotes sexy?" syntax. – Barry Nov 18 '11 at 22:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.