Task:
- Create a class Called PlayGround
- Create non-static variables as below. int score, balls, catches; String player_name;
- Create main method.
- Inside main method, create two instances as below. PlayGround player1 = new PlayGround("dhoni", 100, 3); PlayGround player2 = new PlayGround("jadeja", 56, 2, 30);
- Create appropriate constructors for handling above objects.
- Using player1 object, call batting() method. Print - score, player_name.
- Using player2 object, call allrounder() method. Print - score, player_name, balls, catches
Input:
class PlayGround
{
int score, balls, catches;
String player_name;
public PlayGround(String player_name, int score, int catches)
{
this.player_name = player_name;
this.score = score;
this.catches=catches;
}
public PlayGround(String player_name, int score, int catches, int balls)
{
this.player_name = player_name;
this.score = score;
this.catches = catches;
this.balls = balls;
}
public static void main(String[] args)
{
PlayGround player1 = new PlayGround("dhoni",100,3);
PlayGround player2 = new PlayGround("jadeja",56,2,30);
player1.batting();
player2.allrounder();
}
public void batting()
{
System.out.println(player_name + " "+ score);
}
public void allrounder()
{
System.out.println(player_name + " "+ score + " " + balls + " "+ catches + " ");
}
}
Output:
Top comments (0)