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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T02:17:04+00:00 2026-05-27T02:17:04+00:00

Possible Duplicate: Should I initialize variable within constructor or outside constructor I have here

  • 0

Possible Duplicate:
Should I initialize variable within constructor or outside constructor

I have here two examples on how to initialize a field (instance variable) in a class. My question is: what’s the difference between them? Which one is the best and why?

EXAMPLE 1:

public class Example1 {
        private Object field;
        public Example1() {
            field = new Object();
        }
    }

EXAMPLE 2:

public class Example2 {
        private Object field = new Object();
        public Example2() {
        }
    }
  • 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-27T02:17:05+00:00Added an answer on May 27, 2026 at 2:17 am

    Your first example is initializing the instance variables in the constructor.

    The second example is initializing them when the class itself is instantiated, prior to the execution of code in your constructor, after the execution of any code in the superclass constructor. (If called.)

    If you have instance variables that are always going to be initialized the same way regardless of which constructor is called, then you should use the second method. If the initialization of your instance variables depends on which constructor is called, then the first method is better. For example:

    public class Dog {
        private int numLegs = 4;
        private String name = "Fred";
    
        public Dog() {
        } 
    
        public Dog(String name) {
            this.name = name;
        }
    }
    

    Note in the above example that you can actually use both – initialization in the constructor, and during the instantiation of your object.

    Dog myDog = new Dog(); // This dog's name is Fred
    Dog myDog = new Dog("Spot"); // This dog's name is Spot
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: Initialize class fields in constructor or at declaration? We are arguing about
Possible Duplicate: Should Usings be inside or outside the namespace sa1200 All using directives
Possible Duplicate: Difference between pointer variable and reference variable in C++ When should I
Possible Duplicate: Should Usings be inside or outside the namespace I am looking at
Possible Duplicate: Should a function have only one return statement? Hello, gcc 4.4.4 c89
Possible Duplicate: Should Usings be inside or outside the namespace What is the difference
Possible Duplicate: When should you use 'friend' in C++? I have come to a
Possible Duplicate: C++ When should we prefer to use a two chained static_cast over
Possible Duplicate: Should Usings be inside or outside the namespace .NET namespaces and using
Possible Duplicate: Should I Create a New Delegate Instance? Hi, I've tried searching for

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.