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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T05:40:34+00:00 2026-06-15T05:40:34+00:00

Is there a way to statically reference a method for reflection in Java. Here’s

  • 0

Is there a way to statically reference a method for reflection in Java. Here’s some example code to give you an idea of what I am attempting:

public void myFunc(int x) { ... }

public void other() {
    Method m1 = getClass().getMethod("myFunc");  // dynamic
    Method m2 = this.myFunc;                     // static
    Method m3 = MyClass.myFunc;                  // static (alternate)
}

I recognize that the above syntax does not work, but I was wondering if there is some sort of syntax similar to this that actually does work. I want a way to use reflection without worrying about the inherent dangers of referencing a method by a string.

Is there a way to do this, or is it just a pipe-dream?

  • 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-15T05:40:35+00:00Added an answer on June 15, 2026 at 5:40 am

    Method references explains

    this method to compare the birth dates of two Person instances already exists as Person.compareByAge. You can invoke this method instead in the body of the lambda expression:

    Arrays.sort(rosterAsArray,
        (a, b) -> Person.compareByAge(a, b)
    );
    

    Because this lambda expression invokes an existing method, you can use a > method reference instead of a lambda expression:

    Arrays.sort(rosterAsArray, Person::compareByAge);
    

    and it goes on to explain the various kinds of method references:

    There are four kinds of method references:

    Reference to a static method      ContainingClass::staticMethodName
    
    Reference to an instance method
    of a particular object            containingObject::instanceMethodName
    
    Reference to an instance method   ContainingType::methodName
    of an arbitrary object of a
    particular type
    
    Reference to a constructor        ClassName::new
    

    HISTORICAL NOTE (Written before Java 8 was finalized)

    I think the Java closures proposal has something like this. Stephen Colebourne says:

    Stefan and I are pleased to announce the release of v0.4 of the First-class Methods: Java-style closures proposal.

    Changes

    Since v0.3, we have tried to incorporate some of the feedback received on the various forums. The main changes are as follows:

    1) Constructor and Field literals. It is now possible to create type-safe, compile-time changed instances of java.lang.reflect.Constructor and Field using FCM syntax:

    // method literal:
    Method m = Integer#valueOf(int);
    
    // constructor literal:
    Constructor<Integer> c = Integer#(int);
    
    // field literal:
    Field f = Integer#MAX_VALUE;
    

    but I don’t think this syntax is available in any shipping JVM. Closures themselves are definitely not in Java 7. You might see it in Java 8.

    The Java closures site has a pointer to “Method references” which is a bit more up-to-date though it doesn’t look like they’ve changed the syntax much.

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

Sidebar

Related Questions

Is there any way I can check if a method is being called statically
Is there any way to use DLR to reference a method in C#? In
Is there a free way to statically link a dll? I've tried dll to
Is there a way to give an ASP.NET MVC 4 project a public folder,
Given a pointer to some variable.. is there a way to check whether it
Is there a way to detect statically if a any member of a class
Is there way to get file from windows xp command prompt? I tried to
Is there way to automatically maximize the output window on hitting build and then
Is there way to copy a file into Plone with WebDAV and have Plone
is there way how to get name ov event from Lambda expression like with

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.