首页 > 计算机 > 计算机考试 正文

[填空题] 下列JApplet使用重写paintCompon6t()方法来绘制图像,请填写正确的代码在横线处。 import java.awt.*; import javax.swing.*;

时间:2021-07-20 17:20:09 解答: 82 次

[填空题] 下列JApplet使用重写paintCompon6t()方法来绘制图像,请填写正确的代码在横线处。

import java.awt.*;

import javax.swing.*;

public class Test extends JApplet

staic String fileName = "img().gif";

public void init()

Container cp = getContentPane();

cp.setLayout(new GridLayout(1,1));

Image i = getImage(getCodeBase(),fileName);

MyImagePanel ip=new MyInmagePanel(i);

cp. add (ip);

class MyImagePanel extends JPanel

Image i;

public MyImagePanel(Image img)

this.i = img;

public void paintComponent(Graphics gg)

【15】 ;

gg.drawImage(i,20,20,this);

正确答案:

super.paintComponent(gg)

参考解析:

在Panel子类中重写paintComponent()方法,必须在绘制图像之前调用super.paintComponent()方法来对构件的背景进行绘制。

  • 相关题库

请充值VIP继续使用(未注册用户支付后会自动注册登录)

×

95元 29元

VIP截止日期:2025-01-02 02:38:12

←请使用支付宝扫码支付

95元 29元

VIP截止日期:2025-01-02 02:38:12

←请使用微信扫码支付