2

是否有包含所有内置方法的列表?当我遇到问题时,有人会说“ruby 有一个内置的方法”......那么人们怎么知道呢?

4

3 回答 3

5

您可以查看Ruby 标准库 API核心 API(向下滚动一点)。

两者都非常有用,尤其是 Core API。

例如,如果您想知道标准数组可以做什么,请查看:The Ruby Core page OnArray

快乐编码!

于 2013-10-03T05:29:09.560 回答
3

you can do something like this

ClassName.method
ObjectName.method
Integer.methods
Integer.class.methods

so you can do what evert you have .methods and see what comes back its really simple

于 2013-10-03T05:23:05.173 回答
1
ClassName.methods #=> returns all methods
ClassName.public_methods #=> returns all public methods
ClassName.private_methods #=> returns all private methods

例如

String.methods
String.public_methods
String.private_methods
于 2013-10-03T05:38:08.523 回答