java show()函数

[复制链接]
查看11 | 回复2 | 2009-2-12 11:16:08 | 显示全部楼层 |阅读模式
import java.awt.*;
import javax.swing.*;
import java.util.*;
public class HeadLine extends JFrame
{
HeadLinePanel news = new HeadLinePanel();

public HeadLine()
{

super("HeadLines");

setSize(420,100);

setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

JPanel pane = new JPanel();

pane.setLayout(new GridLayout(1,1,15,15));

pane.add(news);

setContentPane(pane);

pane.setVisible(true);

news.setVisible(true);

news.scroll();


}

public static void main(String[] argument)
{

HeadLine head = new HeadLine();

ExitWindow exit = new ExitWindow();

head.addWindowListener(exit);
}
}
class HeadLinePanel extends JPanel
{

String[] headlines = {

"Grandmother of Eight Makes Hole in One","Folice Begin Campaign to Run Down Jaywalkers",

"Dr.Ruth to Talk About Sex with Newspaper Editors","Enraged Cow Injures Farmer with Axe"};

int y = 76;

void scroll()

{

while(true)

{

y = y - 1 ;

if ( y < -75 )

y = 76 ;

repaint();

try{

Thread.sleep(250);

}

catch(InterruptedException e){}

}

}


public void paintComponent(Graphics comp)

{

Graphics2D comp2D = (Graphics2D)comp;

Font type= new Font("monospaced",Font.BOLD,14);

comp2D.setFont(type);

comp2D.setColor(getBackground());

comp2D.fillRect(0,0,getSize().width,getSize().height);

comp2D.setColor(Color.black);

for(int i = 0; i < headlines.length; i++)

{

comp2D.drawString(headlines,5,(y + i * 20));

}

}
}运行后,没结果

回复

使用道具 举报

千问 | 2009-2-12 11:16:08 | 显示全部楼层
你建立了JPanel,但是没有把JPanel添加到JFrame中。在HeadLine构造函数中添加:this.add(pane);this.setVisible(true); 就ok了。...
回复

使用道具 举报

千问 | 2009-2-12 11:16:08 | 显示全部楼层
@Deprecatedpublic void show(boolean b)已过时。 从 JDK version 1.1 开始,由 setVisible(boolean) 取代。public static void main(String[] argument) { HeadLine head = new HeadLine(); JFra...
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

主题

0

回帖

4882万

积分

论坛元老

Rank: 8Rank: 8

积分
48824836
热门排行