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.
a=Array.new a=[1,2,3,4,5] puts a
然后输出将是1,2,3,4,5,但我想显示a[1]到a[0] (2,3,4,5,1)。
1,2,3,4,5
a[1]
a[0]
2,3,4,5,1
是否有任何内置方法可以按上述顺序显示?
提前致谢。
恐怕没有内置方法可以按您想要的顺序显示它 - 您必须自定义/实现自己的 toString (或类似)方法/实用程序才能实现数组元素的任意显示