假设我有这个类:classFoodefdestroy_target(target)Missile.launch(target)endend我想暂时消除Foo的破坏力,例如为了测试目的,所以我这样做:backup=Foo.instance_method(:destroy_target)classFoodefdestroy_target(target)Pillow.launch(target)endend这是我的问题:如何将原始方法“重新附加”到Foo,就好像它一开始就没有被覆盖一样?我意识到我可以做到:classFoodefdestroy_target(target)backup.bin