标题:用eclipse运行以下代码时有一个错误!
取消只看楼主
幸福天堂
Rank: 1
等 级:新手上路
帖 子:45
专家分:0
注 册:2007-10-31
 问题点数:0 回复次数:0 
用eclipse运行以下代码时有一个错误!
package stumng;
import javax.swing.UIManager;
import java.awt.*;
/**
  *<p>Title:</p>
  *<p>Description:</p>
  *<p>Copyright:Copyright(c)2005</p>
  *<p>Company:</p>
  *@author not attributable
  *@version 1.0
  */
public class stuMngApp{
   boolean packFrame=false;
   //Construct the application
   public stuMngApp(){
     stuInfMng frame=new stuInfMng();   //实例化一个框架
     //Validate frames that have preset sizes
     //Pack frames that have userful prefered size info,e.g.from their layout
   if(packFrame){
      frame.pack();
   }
   else{
     frame.validate();
   }
   //Center the window
   Dimension screenSize=Toolkit.getDefaultToolkit().getScreenSize();   //得到屏幕的大小
   Dimension frameSize=frame.getSize();   //得到框架的尺寸
   if(frameSize.height>screenSize.height){
      frameSize.height=screenSize.height;
   }
   if(frameSize.width>screenSize.width){
      frameSize.width=screenSize.width;
   }
   frame.setTitle("欢迎进入学生管理系统");  //对框架的标题
   frame.setLocation((screenSize.width-frameSize.width)/2,(screenSize.height-frameSize.height)/2);
   frame.setVisible(true);  //设置框架的可见方式
}


//Main method
public static void main(String[] args){
  try{
      UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());  //设置图形界面的外观
  }
catch(Exception e){
  e.printStackTrace();
  }
new stuMngApp();
 }
}



我用eclipse编译的时候不成功,应该是stuInfMng frame=new stuInfMng();   中的stuInfMng类没定义,那么应该怎么去定义这个类呢?

484161.jpg (25.71 KB)
搜索更多相关主题的帖子: eclipse 代码 时有 运行 
2007-12-26 15:07



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-194404-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.701662 second(s), 9 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved