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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T11:54:14+00:00 2026-05-13T11:54:14+00:00

Why are constructor calls in Java allowed only once per instance? If would be

  • 0

Why are constructor calls in Java allowed only once per instance? If would be useful to set multiple instance variables in one call rather than calling several setters.

  • 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-13T11:54:15+00:00Added an answer on May 13, 2026 at 11:54 am

    If you want to set several variables at once just define a function:

    public class Person {
      public Person(String firstName, String lastName, Date dateOfBirth) {
        set(firstName, lastName, dateOfBirth);
      }
    
      public void set(String firstName, String lastName, String dateOfBirth) {
        ...
      }
    }
    

    By definition an object is only constructed once, hence the constructor is only called once.

    One thing worth noting: it’s more common to favour immutability, so:

    public class Person {
      private final String firstName;
      private final String lastName;
      private final Date dateOfBirth;
    
      public Person(String firstName, String lastName, Date dateOfBirth) {
        this.firstName = firstName;
        this.lastName = lastName;
        this.dateOfBirth = dateOfBirth == null ? null new Date(dateOfBirth.getTime());
      }
    
      public String getFirstName() { return firstName; }
      public String getLastName() { return lastName; }
      public Date getDateOfBirth() { return dateOfBirth == null ? null : new Date(dateOfBirth.getTime()); }
    
      public Person withFirstName(String firstName) {
        return new Person(firstName, lastName, dateOfBirth);
      }
    
      public Person withLastName(String lastName) {
        return new Person(firstName, lastName, dateOfBirth);
      }
    
      public Person withDateOfBirth(Date dateOfBirth) {
        return new Person(firstName, lastName, dateOfBirth);
      }
    }
    

    because a lot of concurrency issues simply go away when you do this. Not just concurrency issues too. String, BigDecimal, BigInteger and some other standard classes are immutable (immutable means once instantiated its state can never change). Date isn’t. You see in the above code I have to constantly defensively copy the date of birth? That’s because Date is not immutable. If you didn’t a caller could do this:

    public class Person {
      private final Date dateOfBirth;
    
      ...
    
      public Date getDateOfBirth() { return dateOfBirth; }
    }
    
    Person person = new Person(...);
    Date date1 = person.getDateOfBirth();
    date1.setTime(1000000000L);
    System.out.println(person.getDateOfBirth());
    

    The date of birth will have changed. That problem is caused solely by Date being mutable. That’s another reason to favour immutability.

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

Sidebar

Ask A Question

Stats

  • Questions 384k
  • Answers 384k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Ok so I got it working finally. Though not how… May 14, 2026 at 11:10 pm
  • Editorial Team
    Editorial Team added an answer You'd want to go with Dependency injection. Based on what… May 14, 2026 at 11:10 pm
  • Editorial Team
    Editorial Team added an answer Is it in your include path? var_dump(get_include_path()); If it's not,… May 14, 2026 at 11:10 pm

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.