1. class A
  2. end
  3.  
  4. a = A.new
  5.  
  6. puts a.class
  7.  
  8. class Object
  9.   remove_const 'A'
  10. end
  11.  
  12. puts a.class
  13.  
  14. begin
  15.   b = A.new
  16. rescue NameError
  17.   puts 'Not Found Class A'
  18. end

 执行结果:
    A
    A
    Not Found Class A

Related posts for the current post: