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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T11:24:23+00:00 2026-06-14T11:24:23+00:00

I was wondering if it is possible to do something like this with byte-code

  • 0

I was wondering if it is possible to do something like this with byte-code manipulation:

public class Foo {
    public int getBlah() {
       return 1;
    }
}

public void hi(int x) {
    System.out.println("hi: " + x);
}

public void hi(String x) {
    System.out.println("wow: " + x);
}

Now I want to call:

hi(foo.getBlah());

and invoke the overloading hi method for the String parameter.

  • 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-14T11:24:24+00:00Added an answer on June 14, 2026 at 11:24 am

    Can you handle a flagged value on hi(int x)? If yes you could do something like this:

    public void hi(int x) {
        if (x == Integer.MIN_VALUE) {
            String newParam = getTheParamFromProxySomehow();
            hi(newParam);
            return;
        }    
        System.out.println("hi: " + x);
    }
    

    It is basically:

    • Intercept through a proxy the getBlah() method
    • Save (in a ThreadLocal?) whatever String parameter you want to pass to the overloaded hi method
    • Return the flagged value such as 0, -1 or Integer.MIN_VALUE
    • Do the trick above

    It is a little hacky and it looks best when you don’t have a primitive so you can use null as your flagged value. Hopefully someone has a better answer. 🙂

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

Sidebar

Related Questions

I was wondering whether it is possible to do something like this: unsigned int
I was wondering if it was possible to do something like this. I want
I was wondering if it's possible to do something like this (which doesn't work):
Does anyone know if something like this is possible in Scala: case class Thing(property:String)
I was wondering if it's possible to do something like this. I'm having the
I was wondering if something like this was possible: SELECT name or alt_name FROM
I was just wondering whether its possible to have something like this: I have
I was wondering if it's possible to write something like this: <Window ... xmlns
I was wondering something like this is possible. Perhaps using templates and trickery? The
I'm very new to git, and was wondering if something like this is possible?

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.