Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6996345
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T20:08:40+00:00 2026-05-27T20:08:40+00:00

I made two classes. The first one is the Player class and the second

  • 0

I made two classes. The first one is the Player class and the second the Bag. What I want is to print the score of the player in main(). In Bag, I count the score and I want to set it in Player. This is a part of the Bag class

 public void count( int number)
 { ............. 
   scr=k*2;//gives an int
   setScore(scr);//set the score in Player class
 }

Player:

public class Player {

public Player() {
}

private String name;
private int score;

public Player(String name, int score) {
    this.name = name;
    this.score = score;
}
 public String getName() { 
     return name;
 }

public void setScore(int score) {
    this.score = score;
}

public int getScore() {
    return score;
}

In main() I try to print the score with this code but I can’t:

Player p=new Player();
System.out.println( p.getScore());

It returns me score=0 (which I set it at the begging of main)
I hope that you understand what I want to say.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T20:08:40+00:00Added an answer on May 27, 2026 at 8:08 pm

    For this to work, the Bag class should have a reference to the Player class. So essentially you should change your code to follow the below pattern

    class Bag
    {
      private Player p;
    
      public void setPlayer(Player pp)
      {
        p=pp;
      }
    
      public Player getPlayer()
      {
        return p;
      }
    
     public void count( int number)
     { 
       scr=k*2;//gives an int
       p.setScore(scr);//set the score in Player class
     }
    }
    

    And your main method

    Player p=new Player();
    Bag b=new Bag();
    b.setPlayer(p);
    b.count(5);
    System.out.println( p.getScore());
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i have made two view classes in first view class i am making more
Context: .Net, C# I want to print a complex number made from two doubles.
I have created a debugger visualizer in VS2008. There are two classes i've made,
Given the case I made two independent changes in one file: eg. added a
I made query that accepts two parameters. Now I want to use that query
I have an AES encryption being made on two columns: one of these columns
I made a simple command-line based game in java, only two classes (using Eclipse).
I have a class that needs access to two other classes. Signin needs access
Imagine in C++ two classes one named derived and another named base that is
Consider two .net dlls. The first, application.dll contains the main business logic and data

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.