赞 | 1 |
VIP | 1 |
好人卡 | 4 |
积分 | 1 |
经验 | 2565 |
最后登录 | 2019-1-15 |
在线时间 | 93 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 104
- 在线时间
- 93 小时
- 注册时间
- 2008-8-11
- 帖子
- 209
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
初学RGSS,偶然遇到了一个无限递归的错误。
感觉按照正常逻辑来看是根本不会发生递归的,希望大佬们能够帮我解惑。
简化出来的代码如下:
- class A_Test
- def test
- print('A')
- end
- end
- class B_Test < A_Test
- def test
- print('B')
- super
- end
- end
- class A_Test
- alias base_test test
- def test
- print('newA')
- base_test
- end
- end
- class B_Test
- alias base_test test
- def test
- print('newB')
- base_test
- end
- end
- b = B_Test.new
- b.test
复制代码 |
|