java.lang.NoSuchMethodError: 线程“main”中的 main 异常

发布于 2024-10-15 22:51:05 字数 1151 浏览 2 评论 0原文

可能的重复:
线程“main”中的异常 java.lang.NoSuchMethodError: main

我的主要语法是正确的。还有什么问题?

public class BuildHeap
{       
  int a[]={1,2,6,3,5,1,7,8,4,9};

  public void build()
  {
      for(int i=5;i<=1;i--)
      {
         heapify(a,i);
      }
  }

  public void heapify(int a[],int i)
  { 
    System.out.print("hello");
    int j,temp,rchild,lchild;
    if(i<5)
     {
        if(2*i<5)
            lchild=a[(2*i)+1];
        if((2*i)+1<4)
            rchild=a[(2*i)+2];

        if(lchild>rchild)
            j=(2*i)+1;
        else
            j=(2*i)+2;

        if(a[i]<a[j])
         {
            temp=a[i];
            a[i]=a[j];
            a[j]=temp;
            heapify(a,j);

} } }

class Heap
{
    public static void main(String[] args) 
    {
        BuildHeap bh=new BuildHeap();
        bh.build();
        for(int i=0;i<10;i++)
            System.out.print(bh.a[i]+" ");
    }
}

Possible Duplicate:
Exception in thread “main” java.lang.NoSuchMethodError: main

My main syntax is correct. What else could be the problem?

public class BuildHeap
{       
  int a[]={1,2,6,3,5,1,7,8,4,9};

  public void build()
  {
      for(int i=5;i<=1;i--)
      {
         heapify(a,i);
      }
  }

  public void heapify(int a[],int i)
  { 
    System.out.print("hello");
    int j,temp,rchild,lchild;
    if(i<5)
     {
        if(2*i<5)
            lchild=a[(2*i)+1];
        if((2*i)+1<4)
            rchild=a[(2*i)+2];

        if(lchild>rchild)
            j=(2*i)+1;
        else
            j=(2*i)+2;

        if(a[i]<a[j])
         {
            temp=a[i];
            a[i]=a[j];
            a[j]=temp;
            heapify(a,j);

}
}
}

class Heap
{
    public static void main(String[] args) 
    {
        BuildHeap bh=new BuildHeap();
        bh.build();
        for(int i=0;i<10;i++)
            System.out.print(bh.a[i]+" ");
    }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

可是我不能没有你 2024-10-22 22:51:05

您需要将 main 方法放在公共类 BuildHeap 中(而不是包私有类 Heap)。或者您可能只是在命令行上指定了错误的类名。同样,main 位于 Heap 中,而不是 BuildHeap 中。

You need to put the main method in the public class BuildHeap (not the package-private class Heap). Or maybe you just specified the wrong class name on the command line. Again, main is in Heap, not BuildHeap.

活雷疯 2024-10-22 22:51:05

最可能的原因应该是您的类名和文件名不匹配。
创建一个包含 Heap 类的新文件,并将文件名为 Heap.java。
将 BuildHeap 类保留在同一包的不同文件中。运行堆。它应该有效。
否则,将 BuildHeap 类从公共类更改为公共类。

更好的方法是将类分开在不同的文件中。

The most probable cause should be that your class name and file name doesnot match.
Create a new file containing the class Heap and have the filename as Heap.java.
Keep BuildHeap class in a different file in the same package. Run Heap. It should work.
Else change the BuildHeap class from public class and make the Heap class as public.

The better way would be to separate the classes in different files.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文