gpt4 book ai didi

java - 当它说类没有接受 String[] 的 static void main 方法时,在哪里添加 main 方法

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

我正在尝试使名为 ZawTennisPlayer 的程序使用构造函数和显示方法输出以下内容。 Desired sample output我正在使用名为 TestTennisPlayer2 的示例代码来测试它并获得所需的输出。我当前的代码是:

public class ZawTennisPlayer

{
//instance variables
private String playerName;
private String country;
private int rank;
private int age;
private int wins;
private int losses;

//default constructor
public ZawTennisPlayer()
{
playerName=null;
country=null;
rank=0;
age=0;
wins=0;
losses=0;

}

//parameterized constructor
public ZawTennisPlayer(String playerName,String country)
{
this.playerName=playerName;
this.country=country;
rank=0;
age=0;
wins=0;
losses=0;

}

//parameterized constructor
public ZawTennisPlayer(String playerName,String country,int rank, int age)
{
this.playerName=playerName;
this.country=country;
this.rank=rank;
this.age=age;
wins=0;
losses=0;
}

//parameterized constructor
public ZawTennisPlayer(String playerName,String country,int rank, int age,int wins,int losses)
{
this.playerName=playerName;
this.country=country;
this.rank=rank;
this.age=age;
this.wins=wins;
this.losses=losses;

}

//all accesor and mutator method for all six fields.

public String getPlayerName()

{

return playerName;

}

public void setPlayerName(String playerName)

{

this.playerName = playerName;

}

public String getCountry()

{

return country;

}

public void setCountry(String country)

{

this.country = country;

}

public int getRank()

{

return rank;

}

public void setRank(int rank)

{

this.rank = rank;

}

public int getAge()

{

return age;

}

public void setAge(int age)

{

this.age = age;

}

public int getWins()

{

return wins;

}

public void setWins(int wins)

{

this.wins = wins;

}

public int getLosses()

{

return losses;

}

public void setLosses(int losses)

{

this.losses = losses;

}

//method to display player details
public void displayPlayer()
{

System.out.println("Player's name: " + getPlayerName());

System.out.println("Player's country: " + getCountry());

System.out.println("Player's rank: " + getRank());

System.out.println("Player's age: " + getAge());

System.out.println("Player's wins: " + getWins());

System.out.println("Player's losses: " + getLosses());

System.out.println();
}

}

但是,当该程序编译时,我收到错误“此类没有接受 String[] 的 static void main 方法。”当我运行它时。我知道我应该在 ZawTennisPlayer 程序中的某处添加一些“public static void main(String[] args)”,但我不确定在哪里。知道如何修复程序以获得所需的输出吗?提前致谢!

我用来测试程序的示例代码“TestTennisPlayer2”是:

public class TestTennisPlayer2
{
public static void main(String[] args)
{
ZawTennisPlayer tp1 = new ZawTennisPlayer();
ZawTennisPlayer tp2 = new ZawTennisPlayer("Nick Kyrgios", "Australia");
ZawTennisPlayer tp3 = new ZawTennisPlayer("Simona Halep", "Romania", 1, 26);
ZawTennisPlayer tp4 = new ZawTennisPlayer("Novak Djokovic", "Serbia", 18, 30, 6, 6);

tp1.displayPlayer();
tp2.displayPlayer();
tp3.displayPlayer();
tp4.displayPlayer();




}
}

最佳答案

正如评论中提到的,您似乎正在尝试运行 ZawTennisPlayer ,而您应该运行 TestTennisPlayer2
如果您通过命令提示符运行,请使用

>javac TestTennisPlayer2.java

>java TestTennisPlayer2

或者从 eclipse IDE ,

open TestTennisPlayer2.java, right click -> run as > java application

关于java - 当它说类没有接受 String[] 的 static void main 方法时,在哪里添加 main 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51467994/

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