码迷,mamicode.com
首页 > 编程语言 > 详细

今天完成顺利编译d:\test\Console.java

时间:2018-06-08 17:23:38      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:TE   OLE   nbsp   console   sub   star   seo   ret   今天   

今天完成顺利编译d:\test\Console.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:\test\Console.java

标签:TE   OLE   nbsp   console   sub   star   seo   ret   今天   

原文地址:https://www.cnblogs.com/strongdady/p/9156541.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!