赞 | 451 |
VIP | 56 |
好人卡 | 75 |
积分 | 427 |
经验 | 124650 |
最后登录 | 2024-12-24 |
在线时间 | 7617 小时 |
Lv5.捕梦者 (管理员) 老黄鸡
- 梦石
- 0
- 星屑
- 42686
- 在线时间
- 7617 小时
- 注册时间
- 2009-7-6
- 帖子
- 13506
|
本帖最后由 fux2 于 2010-12-25 15:42 编辑
喵不知道符合规则不- class Array
-
- def word(count)
- a="abcdefghijklmnopqrstuvwxyz"
- return a[count,1]
- end
- def like(fux2)
- return [word(self[0]),self[1],self[2],self[3]]
- end
-
- def of(fux2)
- unless fux2 == "the past"
- return [self[0],word(self[1]),self[2],self[3]]
- end
- return self
- end
-
- def better_than(fux2)
- return [self[0],self[1],word(self[2]),self[3]]
- end
-
- end
- class Temp < Array
- I = [5,20,23,2]
- a = I.like("the dreams").of("the future").better_than("the history").of("the past")
- p a.to_s
- end
- a = Temp.new
复制代码 .
点我查看运行结果
.
.
I.like("the dreams").of("the future").better_than("the history").of("the past")
I like the dreams of the future better than the history of the past.
我不缅怀过去的历史,而致力于未来的梦想。—— T. Jefferson 杰弗逊(美国第3任总统)
.
.
.
.
|
|