我只是想用 JRuby 创建一个简单的图形窗口。所以我安装了 JRuby 并且正在使用 rubymine IDE。我有这段代码:
include Java
import java.awt.Color
import javax.swing.ImageIcon
import javax.swing.JLabel
import javax.swing.JPanel
import javax.swing.JFrame
class Graphics < JFrame
def initialize
super "Absolute"
self.initUI
end
def initUI
panel = JPanel.new
panel.setLayout nil
panel.setBackground Color.new 66, 66, 66
self.getContentPane.add panel
self.setDefaultCloseOperation JFrame::EXIT_ON_CLOSE
self.setSize 350, 300
self.setLocationRelativeTo nil
self.setVisible true
end
end
我运行它,它编译没有错误。红宝石矿 说:
Process finished with exit code 0
但是什么也没发生,我根本看不到任何窗口。如何让一个简单的图形窗口出现?谢谢