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.
我见过一行只有两个双引号(“”)的 Ruby 代码。那条线有什么作用?
我想你可能已经看过这样的代码。
def some_method #do some operations "" end
在这种情况下,这意味着该方法正在返回一个空字符串。在 Ruby 中,方法中最后评估的操作是从该方法返回的内容。所以在这种情况下,它返回一个空字符串文字。
两个双引号表示 Ruby 中的文字空字符串。在许多其他语言中。