今天完成顺利编译d: estConsole.java
Posted strongdady
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了今天完成顺利编译d: estConsole.java相关的知识,希望对你有一定的参考价值。
今天完成顺利编译d: estConsole.java
import javax.swing.*;
import java.awt.event.*;
public class Console
{
public static String title(Object o)
{
String t=o.getClass().toString();
if(t.indexOf("class")!=-1)
t=t.substring(6);
return t;
}
public static void run(JFrame frame, int width,int height)
{
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(width, height);
frame.setVisible(true);
}
public static void run(JApplet applet, int width ,int height)
{
JFrame frame=new JFrame(title(applet));
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.getContentPane().add(applet);
frame.setSize(width, height);
applet.init();
applet.start();
frame.setVisible(true);
}
public static void run(JPanel panel, int width ,int height)
{
JFrame frame=new JFrame(title(panel));
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.getContentPane().add(panel);
frame.setSize(width, height);
frame.setVisible(true);
}
}//e
以上是关于今天完成顺利编译d: estConsole.java的主要内容,如果未能解决你的问题,请参考以下文章