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.
我注意到我开始使用“puts”方法的应用程序并不多(不确定它是否是一种方法,或者它的确切名称);但是,在本教程中,我只是使用它来学习 Ruby 的基础知识——通常使用什么来代替?
谢谢。
puts方法本质上是一个“print to_s”,它接收一个对象(数字、字符串等)尝试将其转换为字符串然后打印它。
puts
由于大多数 ruby 应用程序都是网络应用程序,因此很少看到它在这些应用程序上使用,我们可以在 html/erb 模板中使用变量,但它通常用于 ruby 脚本、rake 任务和其他类型的东西仅依赖于终端。