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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T06:07:56+00:00 2026-06-08T06:07:56+00:00

I have the next code: public byte[] A(int i){//do something} public byte[] B(string a)

  • 0

I have the next code:

public byte[] A(int i){//do something}

public byte[] B(string a) { //do something}

public void useAMethod()
{
  //Previous code
  byte[] array = A(0);
  //final code using array 
}

public void useBMethod()
{
  //Previous code
  byte[] array = B("test");
  //final code using array 
}

Like you can see, i have two methods with same return value but differents params
I would like something like:

public void useAnyMethod([method] methodToUse)
{
  //Previous code
  byte[] array = methodToUse;
  //final code using array 
}

To use like:

useAnyMethod(A(0));
useAnyMethod(B("test"));

is it posiible??

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-06-08T06:07:57+00:00Added an answer on June 8, 2026 at 6:07 am

    I take it the byte[] = is some sort of internal assignment?

    If so

    public void useAnyMethod(byte[] result) { 
    
       byte[] = result;  // This is not actually valid because you don't have a variable name after byte[]¬
    }
    
    useAnyMethod(a(0));
    useAnyMethod(b("fish"));
    

    useAnyMethod doesn’t actually call the method it just accepts the return value of the method which the runtime will call first to get the result.

    Alternatively if you are determined to used a delegate

    public void useAnyMethod(Func<byte[]> method) {
        byte[] = method();
    }
    
    useAnyMethod(()=>A(0));
    useAnyMEthod(()=>B("test"));
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i have written the next code: public void delete(MyType instance) { List<MyType> myList =
I have written this code: public void reloadDefConfig(File filepath, String fileInJar) { File configFile
I have this following test code: public static final String[] list = { apple,ball,cat,dog,egg,fan,girl,hat,igloo,jerk
I have a next code: struct T { public T(int u) { this.U =
I have that code to encrypt string to sha256 and next to base64: public
I have the next code : public class AddPrinter extends ListActivity { @Override public
I have the next code: class Printer{ Activity activity; public Printer (Activity activity) {
I have next code: int main() { OwnSelect(23, FD_READ | FD_WRITE); // <---- Several
I wrote a serializer (to Byte Array) for dictionaries that have a string key,
I have next code that represents graph edges and nodes (simplified for question): public

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.