错误:无法在 intelliJ IDE 中找到或加载主类

2022-08-31 05:54:59

我是Java的初学者,我正在尝试使用IntelliJ运行我的代码,我刚刚将其作为JDK 1.7的IDE安装。下面的代码段keep甚至无法编译,并不断给我错误:

Error: Could not find or load main class libTest

法典

import java.lang.Integer;
import java.lang.String;
import java.lang.System;
import java.util.*;

class book {

    private String name = "trial";
    private int bookCode=1;
    private int issued=0;

     public void Issue(){
         if(issued==0) {
             issued=1;
             System.out.println("You have succesfully issued the book");
         }
         else {
             System.out.println("The book is already issued. Please contact the librarian for further details");
         }
    }

    public int checkCode() {
        return bookCode;
    }

    String readName() {
        return name;
    }

    public void setName(String newName){
        name=newName;
    }

    public void setBookCode(int newCode){
        bookCode=newCode;
    }
}

class library {
    private ArrayList books=new ArrayList();

    public void getList(){
        for(int bk:books){
            String bName=books(bk).readName();
            System.out.println((bk+1)+")  "+bName);
        }
    }
}

public class libTest{
    public static void main(String[] args){
        library newLib= new library();
        System.out.println("code working");
   }
}

我必须在编译器设置中进行任何更改吗?还是代码。


答案 1

这可能会有所帮助:

1)“构建”菜单->“”。有时Intellij不会重写这些类,因为它们已经存在,这样你就可以要求Intellij重写所有内容。Rebuild Project

2)“运行”菜单 ->“” ->删除配置文件 ->添加回配置文件(如果是Java应用程序,则为“应用程序”),请从“主类”下拉菜单中选择主类。Edit configuration

3)“构建”菜单->“”。Rebuild Project


答案 2

如果上述答案都不适合您,只需关闭IntelliJ IDE并从项目的根目录中删除IntelliJ IDE文件和文件夹:

rm -rf .idea *.iml 

然后使用 IntelliJ 打开项目。它现在必须工作。


推荐