赞 | 2 |
VIP | 19 |
好人卡 | 10 |
积分 | 3 |
经验 | 57661 |
最后登录 | 2019-5-20 |
在线时间 | 574 小时 |
Lv2.观梦者
- 梦石
- 0
- 星屑
- 253
- 在线时间
- 574 小时
- 注册时间
- 2006-8-25
- 帖子
- 969
|
它的一般方法只有一个,call,当调用它的时候,
$game_temp.choice_proc = Proc.new { |n| @branch[current_indent] = n }
$game_temp.choice_proc.call(99)
他会把参数(或无参数),进行块的运算(并返回结果)
这里的块,指的就是 { |n| @branch[current_indent] = n },也就是你自己生成的Proc.new |
评分
-
查看全部评分
|