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 7693869
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T21:11:19+00:00 2026-05-31T21:11:19+00:00

I have created a method that should ideally take a single Account object and

  • 0

I have created a method that should ideally take a single Account object and then add it an array of accounts, but the problem is that the entered Account “add” overrides every existing Account in the array and sets them all equal to add and I am not sure why. Additionally, prior to doing anything the array accounts gets set to the entered account “add” and I am completely puzzled as to why this is. Sorry if I am missing something blatantly obvious, but any help would be appreciated.

public void addAccount(Account add)
{
  if (count < accounts.length)
  {
    accounts[count] = add;
    count++;
    System.out.println("Added " + add.toString() + " to list of accounts");
  }
  else
  {
    accounts = expand(10);
    addAccount(add);
  }
}
  • 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-31T21:11:21+00:00Added an answer on May 31, 2026 at 9:11 pm

    Your addAccount() method looks ok, your problem is most likely in your call to it. Based on how I’ve seen people get the same problem earlier, the reason you’re seeing it is most likely that you’re doing something like;

    Account account = new Account();
    for(int i=0; i<10; i++)
    {
        account.Name = "Account #" + i;
        accAccount(account);
    }
    

    …which would create one account, change it, add it, change it, add it etc. What you need to remember is that you’re creating a single account, so changing it after adding it will change the values you earlier added to the array too. What you’d need to do is;

    for(int i=0; i<10; i++)
    {
        Account account = new Account();
        account.Name = "Account #" + i;
        accAccount(account);
    }
    

    which will create 10 accounts and would work better.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Currently I have created a ABCFactory class that has a single method creating ABC
I have created a new method in one of the project's controllers that it
I have created a console application that calls a method on a webservice. I
I have created a method that takes two Collection<String> as input and copies one
I have created a method like NUnit's Throws method. Basically, the method should return
I have created a WCF method that runs an infinite loop, polling every 5
I have a method that creates a MessageDigest (a hash) from a file, and
I have a method that creates a local textfield and pops up the keyboard
I have a recusive-method that creates a unordered list from a XML document. To
I have a method that's about ten lines of code. I want to create

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.