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

  • Home
  • SEARCH
  • 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 7488555
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T14:57:19+00:00 2026-05-29T14:57:19+00:00

I have a object with 3 variable (id(string), year(int), pay(double)) I have created an

  • 0

I have a object with 3 variable (id(string), year(int), pay(double))
I have created an arraylist that contains object.

So now I need to sum the the pay if they have the same id and year and store it in a new array! is that possible?

   ArrayList<Earning> temp = new ArrayList();
ArrayList<Earning> temp = new ArrayList();

    double tempEarning = 0.0;
    int count = 0;


    for (int i = 0; i < weeklyEarnings.size(); i++) {
        Earning e = weeklyEarnings.get(i);
        String id = e.getId();
        int year = e.getYear();
        tempEarning = e.getEarning();

        Earning e2 = weeklyEarnings.get(i + 1);

        if (id.equalsIgnoreCase(e2.getId()) && year == e2.getYear()) {
            tempEarning += e2.getEarning();
        } else {
            Earning tempEarn = new Earning();

            tempEarn.setEarning(tempEarning);
            tempEarn.setId(id);
            tempEarn.setYear(year);

            temp.add(tempEarn);

            count++;


            tempEarning = 0.0;


        }

    }

    weeklyEarnings.clear();
    weeklyEarnings = temp;
    temp.clear();

Can someone Help me? Thanks a lot!

  • 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-29T14:57:22+00:00Added an answer on May 29, 2026 at 2:57 pm

    Try this:

    HashMap<String, Earning> totalEarnings = new HashMap<String, Earning>();
    for (Earning earning : weeklyEarnings) {
       Earning tmpEarning = totalEarnings.get(earning.getId() + earning.getYear());
       if (tmpEarning == null) {
          tmpEarning = new Earning();
          tmpEarning.setId(earning.getId());
          tmpEarning.setYear(earning.getYear());
          totalEarnings.put(earning.getId() + earning.getYear(), tmpEarning);
       }
       tmpEarning.setEarning(tmpEarning.getEarning() + earning.getEarning());
    }
    
    for (Earning earning : totalEarnings.values())
    {
       System.out.println(earning.getId() + ' ' + earning.getyear() + ' ' + earning.getEarning());
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a object 'currentVersion' of type Data and string variable of 'version',i need
I have a recursion function that parses an object/array with a global variable. If
I have an object A that has as an instance variable a collection of
I have an object that I'm serializing that contains a lot of doubles and
I have an object that looks like this: public MyObject { public int ObjectID
I have String variable called jsonString : {"phonetype":"N95","cat":"WP"} Now I want to convert it
Error: Cannot convert type 'string' to 'object[*,*]' That's the error I have been getting.
If I have two variables: Object obj; String methodName = getName; Without knowing the
Suppose I have a class module clsMyClass with an object as a member variable.
I have a System.Type stored in a variable. I wish to Change an object's

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.