gpt4 book ai didi

java - 简单的 java 程序在 Eclipse 中没有输出

转载 作者:行者123 更新时间:2023-12-02 05:35:53 24 4
gpt4 key购买 nike

我认为我已经把这个程序写得很好了。它没有给我任何错误,但它也没有给我任何输出。这有什么问题吗?我检查了其他程序,看看 Eclipse 是否有问题,但除了这个之外,其他所有程序都在运行。

注意:我是Java新手。详细解释问题。我知道我把继承的拼写写错了。

 public class Inheritence {
int a;
String b;

Inheritence(int x, String y) {
a = x;
b = y;
}
}

class B extends Inheritence {
int c;

B(int j, String k, int l) {
super(4, "Srimanth");
a = j;
k = b;
c = l;
}

public static void main(String args[]) {
Inheritence obj1 = new Inheritence(4, "Srimanth");
B obj2 = new B(4, "Srimanth", 5);

System.out
.println("The details of the guy are" + obj1.a + " " + obj1.b);
System.out.println("The details of the guy are" + obj2.c);
}

}

最佳答案

代码中的错误是 main 方法是在非公共(public)类 B 中定义的。将 main 方法移至公共(public)类 Inheritence 或定义使 class B Inheritence 的子类并具有 main 方法的 Inheritence。

关于java - 简单的 java 程序在 Eclipse 中没有输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24978550/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com