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

  • Home
  • SEARCH
  • 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 6693595
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T06:00:06+00:00 2026-05-26T06:00:06+00:00

We have X methods and we like call the one relative to user settings

  • 0

We have X methods and we like call the one relative to user settings which of the following runs faster?

Case 1:

int userSetting = 1;
Method method = Class.getDeclaredMethod("Method" + userSetting);
method.invoke();

Case 2:

 int userSetting = 1;
 switch(userSettings) {
     case 0:
         Method0();
     break;
     case 1:
         Method1();
     break;
     ...
     ...
 }

Case 3:

int userSetting = 1;
if(userSetting == 0){
    Method0();
} else if(userSetting == 1){
    Method1();
} else....

Also:

  • You think one even if slower is better practice that the others? If yes why?
  • There is another way witch is better/faster…please tell us.

Thanks

  • 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-26T06:00:06+00:00Added an answer on May 26, 2026 at 6:00 am

    Option 1 uses reflection, and thus will probably be slower, as the javadocs indicate:

    Performance Overhead
        Because reflection involves types that are dynamically resolved, certain Java 
        virtual machine optimizations can not be performed. Consequently, reflective 
        operations have slower performance than their non-reflective counterparts, 
        and should be avoided in sections of code which are called frequently in 
        performance-sensitive applications.
    

    However it is easier to maintain this option then options 2+3.

    I would suggest you to use a complete different option: use the strategy design pattern. It is more likely to be faster and much more readable then the alternatives.

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

Sidebar

Related Questions

Does Python have extension methods like C#? Is it possible to call a method
I'm creating my own JavaScript Array-like object and I have methods that call closures.
I'd like to be able to call getProgram on objects which have that method,
In my Dispose methods (like the one below), everytime i want to call someObj.Dispose()
I have a class that I have to call one or two methods a
I have two methods; one of which resides outside of a class, the other
I'm working on a game engine in C++ and I have methods like setColour
I have methods in all of my models that look like this: def formatted_start_date
I have a class that contains two methods like these: public String getFoo(Int32 a)
Some existing web services I consume have methods that look something like this: List<Employee>

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.