Ruby的基本语法-数组

Ruby中数组的实例

1.color=["Red", "Green" ,"Blue"] #数组赋值
Ruby的基本语法-数组
2.puts color[0] #单个元素访问
Ruby的基本语法-数组
3.puts color[1]
Ruby的基本语法-数组
4.puts color[2]
Ruby的基本语法-数组
5.puts color #列出数组全部元素
Ruby的基本语法-数组
6.p color
Ruby的基本语法-数组
7.color.size #元素数量的显示
Ruby的基本语法-数组
8.color[3]="Yellow" #数组的大小会自动扩展
上一篇:Codeforces Beta Round #46 (Div. 2)


下一篇:【HDOJ】3686 Traffic Real Time Query System