赞 | 0 |
VIP | 0 |
好人卡 | 0 |
积分 | 1 |
经验 | 5436 |
最后登录 | 2017-10-25 |
在线时间 | 84 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 55
- 在线时间
- 84 小时
- 注册时间
- 2009-1-30
- 帖子
- 175
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
想显示数组
class Window_My < Window_Base
#--------------------------------------------------------------------------
# ● 初始化窗口
#--------------------------------------------------------------------------
def initialize
super(0, 0, 300, 300)
self.contents = Bitmap.new(width - 32, height - 32)
refresh
end
#--------------------------------------------------------------------------
# ● 刷新
#--------------------------------------------------------------------------
def refresh
a = [*1..8] #生成应该数组a
for i in 0..100 #循环1-100
a[i] = 2 * i #给数组里的第i个单元赋值2 * i
if a[i] % 10 == 6 #如果第i个单元与10 相除余6
a[i] = nil #则赋予这个单元nil
end
end
self.contents.clear
x = 0
y = 100
h = 300
self.contents.font.color = system_color
self.contents.draw_text(x, y, h, 32,"#{a.compact}" , 0)
end
end
结果。。。
怎么破??? |
评分
-
查看全部评分
|