Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法找到更多关于 irb 中方法的信息。
例如在 irb/pry 我可以做这样的事情:
strigy_object = "I am string"
现在,如果我键入stringy_object.并按 Tab 键,stringy_object则会列出所有可能响应的方法。由于我对 ruby 相对较新,并且对所有方法都不是很熟悉,因此我很想找到有关该方法作用的更多信息。简而言之,是否有一个'man'等效的命令可以帮助我在 irb/pry 中实现这一目标?
stringy_object.
stringy_object
'man'
使用show-doc命令。
show-doc
对于您需要的某些命令gem install pry-doc(例如 C 命令)。
gem install pry-doc
使用stringy_object.methods. 它将返回对象响应的所有方法。
stringy_object.methods
如果您想将该列表缩减为仅特定于该类型对象的方法,您可以执行stringy_object.methods - Object.methods.
stringy_object.methods - Object.methods