eclipse 命令行编译java程序_同一程序,在eclipse中可以运行,cmd命令行运行却编译不过...

报错部分代码如下:

cd2c60a59bb4c074fb482e98050f1878.png

public class BeatBox {

JPanel mainPanel;

ArrayList checkboxList;

Sequencer sequencer;

Sequence sequence;

Track track;

JFrame theFrame;

String[] instrumentNames = {"Bass Drum", "Closed Hi-Hat", "Open Hi-Hat", "Acoustic Snare",

"Crash Cymbal", "Hand Clap", "High Tom", "Hi Bongo", "Maracas", "Whistle",

"Low Conga", "Cowbell", "Vibraslap", "Low-mid Tom", "High Agogo", "Open Hi Conga"};

//实际的乐器关键字,例如说35是Bass Drum,42是Closed Hi-Hat

int[] instruments = {35, 42, 46, 38, 49, 39, 50, 60, 70, 72, 64, 56, 58, 47, 67, 63};

public static void main(String[] args) {

new BeatBox().buildGUI();

}

public void buildGUI() {

theFrame = new JFrame("Cyber BeatBox");

theFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

BorderLayout layout = new BorderLayout();   //创建布局对象?

JPanel background = new JPanel(layout);

//设定面板上摆设组件时的空白边缘

background.setBorder(BorderFactory.createEmptyBorder(10, 10, 10, 10));

checkboxList = new ArrayList();

Box buttonBox = new Box(BoxLayout.Y_AXIS);

JButton start = new JButton("Start");

start.addActionListener(new MyStartListener());

buttonBox.add(start);

JButton stop = new JButton("Stop");

stop.addActionListener(new MyStopListener());

buttonBox.add(stop);

JButton upTempo = new JButton("Tempo Up");

upTempo.addActionListener(new MyUpTempoListener());

buttonBox.add(upTempo);

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值