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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T14:09:22+00:00 2026-05-28T14:09:22+00:00

When creating an object(or anything) in java, what is the difference between doing, for

  • 0

When creating an object(or anything) in java, what is the difference between doing, for example,

Dog d = new Dog();

instead of doing

Dog d;

and then later, finishing it off(sometimes inside and at the beginning of a method) with

d = new Dog();

Wouldn’t the first one be more simple and easier? Why do people do it the second way?

  • 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-28T14:09:23+00:00Added an answer on May 28, 2026 at 2:09 pm

    Think of the following scenario. Assume the constructor of Dog can throw an exception:

    try {
        Dog d = new Dog();    
    } catch(Exception ex) {
        // treat exception
    }
    
    d.bark();
    

    This won’t compile because d is not visible outside the try block. What you need to do is this:

    Dog d = null;
    try {
        d = new Dog();    
    } catch(Exception ex) {
        // treat exception
    }
    if(d != null) d.bark();
    

    And there are many other situations like this. For example, you might have an if-else block where d is initialized differently based on some condition:

    Dog d = null;
    if(/* condition */)
        d = new Dog("Lassie");   
    } else {
        d = new Dog("Sam");
    }
    d.bark();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Firefox 3.5 does not allow creating java OBJECT tag with Javascript (document.write)? this technique
I am creating object-detection program on Mac. I want to use iSight in manual
I have astring directly coming form the database and I am creating object of
Does creating an object using reflection rather than calling the class constructor result in
Below I am creating an object in JavaScript. Within the constructor I am setting
I am creating an object which tracks changes (Updates) regarding the creation, updating and
I did it by creating OLE object with Delphi in 2000/NT/XP as following: Voice
On application start I'm creating Config object (Singleton). How could I make Config object
I have a couple questions about creating a object (2 values) and how to
Hello can anybody solve this please I'm creating the object in the action class

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.