Hash对象实现一种Hash结构,也就是一个Key:Value对的集合。
Hash中的每个Item是一个有两个元素的array,前一个是Key,后一个是Value,每个Item也有两个不需加以说明的属性,key和value。
Method | Kind | Arguments | Description |
keys() | instance | (none) | 返回所有Item的key的集合的一个array。 |
values() | instance | (none) | 返回所有Item的value的集合的一个array。 |
merge(otherHash) | instance | otherHash: Hash object | 合并给出的Hash,返回一个新Hash。 |
toQueryString() | instance | (none) | 以QueryString那样的样式返回hash中所有的item,例如:'key1=value1&key2=value2&key3=value3' |
inspect() | instance | (none) | 用一种合适的方法显示hash中的key:value对。 |