illegal start of type

Joined
Nov 30, 2020
Messages
1
Reaction score
0
Hello, I'm getting a few errors in my code can anyone help thanks.


Player.java:10: error: invalid method declaration; return type required
displayFileContents("roster1.txt");
^
Player.java:10: error: illegal start of type
displayFileContents("roster1.txt");
^
Player.java:11: error: invalid method declaration; return type required
displayFileContents("roster2.txt");
^
Player.java:11: error: illegal start of type
displayFileContents("roster2.txt");
^
4 errors
>


public class Player {

private String name = "";
private double attackStat = 0.0;
private double blockStat = 0.0;


public static Roster openRosterFile() throws IOException;

displayFileContents("roster1.txt");
displayFileContents("roster2.txt");





public Player(String initName, double initAttackStat, double initBlockStat){

name = intName;
attackStat = AttackStat;
blockStat = BlockStat;
}

public String getName()
{
return name;
}

public double getAttackStat()
{
return attackStat;
}

public double getBlockStat()
{
return blockStat;
}

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

public void setAttackStat(double x)
{
attackStat = x;
}

public void setBlockStat(double x)
{
blockStat = x;
}

public void printPlayerInfo()
{
System.out.println(name + "(attack =" + " " + attackStat + " " + "block =" + " " + blockStat);

}



public static void main(String args[]);



public void addPlayer(String playersName, double initAttackStat, double initBlockStat) {

}

public int countPlayers() {

return Player;
}

public void getPlayerByName() {



}

public void PrintTopAttackers () {

}

public double PrintAllBlockers() {

}

public void printAllPlayers(double newBlockStat) {




}
}
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,764
Messages
2,569,566
Members
45,041
Latest member
RomeoFarnh

Latest Threads

Top