当前位置: 代码迷 >> Java相关 >> 用eclipse运行以下代码时有一个错误!
  详细解决方案

用eclipse运行以下代码时有一个错误!

热度:59   发布时间:2007-12-26 15:07:52.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类没定义,那么应该怎么去定义这个类呢?
搜索更多相关的解决方案: eclipse  代码  时有  运行  

----------------解决方案--------------------------------------------------------
让stuInfMng去实现一个JFrame。
----------------解决方案--------------------------------------------------------
你不没定义,而是搞错了!
public class stuInfMng extends JFrame
{
          *************************
        stuInfMng frame=new stuInfMng();   frame 最好改个其它的变量名。
}
----------------解决方案--------------------------------------------------------
顶楼上的
----------------解决方案--------------------------------------------------------
  相关解决方案