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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T12:54:59+00:00 2026-06-07T12:54:59+00:00

There is a class X. A method method() in X class throws SomeException .

  • 0

There is a class X.
A method method() in X class throws SomeException.

I wonder which method of handling exceptions is better – more efficient. If it is surrounding try-block method throwing exceptions and all dependencies or keeping dependences outside try-block, but returning from method after failure.

1.

public void test() {
     X x = new X();

     try {
          T temp = tx.method();
          temp.doWhatever();
     }

     catch(SomeException e) { handleException(e); }
}

or

2.

public void test() {
     X x = new X();
     T temp = null;
     try {
          temp = tx.method();
     }

     catch(SomeException e) { 
          handleException(e);
          return;
     }

     temp.doWhatever();
}

Edited: (after your annotations)

What is more I undersand my code like that:

1.
tx.method() will throw an exception so the next thing which will be excetuted is catch– block. It doesn’t matted that temp is still null because program skips temp.doWhatever(); line and there will be no NullPointerException.

2.
Here I use return instruction because I don’t want to execute temp.doWhatever() because temp is null

  • 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-06-07T12:55:00+00:00Added an answer on June 7, 2026 at 12:55 pm

    The second case won’t even compile (and it does not even make sense), as temp is not visible outside the try block. In any case, I would go for this:

    public void test() {
         X x = new X();
    
         try {
              T temp = tx.method();
              temp.doWhatever();
         }
    
         catch(SomeException e) { handleException(e); }
    }
    

    Since if initializing temp fails, the rest of the temp operations should not execute.

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

Sidebar

Related Questions

There is class Road with its Road.h and Road.cpp which contains implementation of method
We have class lua. In lua class there is a method registerFunc() which is
I've got following problem: (c#) There is some class (IRC bot), which has method,
I wonder if there is a way of writing a method or a class
public class MyClass { public static void method() { try { // there is
Is there any way to override a class method with a lambda function? For
So, I got mailer app/mailers/dynamic_mailer.rb and model app/models/email_message/outgoing.rb . There is method: class EmailMessage::Outgoing
Is there a clean method of mocking a class with generic parameters? Say I
Is there a way to override an existing method in a partial class? Something
Is there any way I can add a static extension method to a 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.