程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> java-這個程序有問題嗎?為什麼編譯不了?我是初學者,請各位大神幫我解決一下吧,謝謝了啊!

java-這個程序有問題嗎?為什麼編譯不了?我是初學者,請各位大神幫我解決一下吧,謝謝了啊!

編輯:編程綜合問答
這個程序有問題嗎?為什麼編譯不了?我是初學者,請各位大神幫我解決一下吧,謝謝了啊!

圖片說明package button;

import java.awt.*;

import java.awt.event.*;

import javax.swing.*;

public class ButtonFrameTest {

/**
 * @param args
 */
public static void main(String[] args) {
    // TODO Auto-generated method stub
    EventQueue.invokeLater(new Runnable()
       {
           public void run()
           {
               JFrame frame=new ButtonFrame();
               frame.setTitle("ButtonFrame");
               frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
               frame.setVisible(true);
           }
       });
}

}
class ButtonFrame extends JFrame
{
private JPanel buttonPanel;
private static final int DEFAULT_WIDTH=300;
private static final int DEFAULT_HEIGHT=200;

public ButtonFrame()
{
    setSize(DEFAULT_WIDTH,DEFAULT_HEIGHT);

    JButton yellowButton=new JButton("Yellow");
    JButton blueButton=new JButton("Blue");
    JButton redButton=new JButton("Red");

    buttonPanel.add(yellowButton);
    buttonPanel.add(blueButton);
    buttonPanel.add(redButton);

    add(buttonPanel);

    ColorAction yellowAction=new ColorAction(Color.YELLOW);
    ColorAction blueAction=new ColorAction(Color.BLUE);
    ColorAction redAction=new ColorAction(Color.RED);

    yellowButton.addActionListener(yellowAction);
    blueButton.addActionListener(blueAction);
    redButton.addActionListener(redAction);

}
private class ColorAction implements ActionListener
{
    private Color backgroundColor;
    public ColorAction(Color c)
    {
        backgroundColor=c;
    }
    public void actionPerformed(ActionEvent event)
    {
        buttonPanel.setBackground(backgroundColor);
    }
}

}

最佳回答:


編譯沒問題,把你的編譯錯誤貼出來

danielinbiti
cacaopie
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved