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.
class Example attr_accessor :test end a = Example.new
如果我有一个我想使用的类,例如Example,这种将所有内容保存在一个文件中的方式,是否比使用“require”从另一个文件中获取该类更快?如果是这样,我们谈论的差异有多大?
Example
不,它并没有更快。老实说,这根本没有区别。
将它放在单独的文件中的好处是:
require