We don’t allow questions seeking recommendations for software libraries, tutorials, tools, books, or other off-site resources. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
如果您执行
Object.superclass
,您将看到它是BasicObject
,它本身没有超类。使用BasicObject.public_methods
显示其中定义了instance_eval
。对于
BasicObject
上的方法,似乎没有任何文档。If you do
Object.superclass
you will see that that isBasicObject
which itself has no superclass. UsingBasicObject.public_methods
reveals thatinstance_eval
is defined there.There does not seem to be any documentation for the methods on
BasicObject
.