次のソースを実行しようとしましたが、
タイプの不一致: CustomJPan から JPanel に変換できません
エラー。誰か助けてくれませんか?ソースを許してください、私は頭の上からそれをしました。
public class rebuiltgui extends JApplet {
public void init() {
JPanel jpan = new CustomJPan();
}
}
class CustomJPan {
public JPanel CustomJPan() {
thispan = new JPanel();
thispan.setBackground( Color.red );
return thispan;
}
public changeColour() {
// Change colour to blue here
}
}