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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T16:44:45+00:00 2026-06-16T16:44:45+00:00

Is it possible to instantiate a private inner class from another class using Java

  • 0

Is it possible to instantiate a private inner class from another class using Java reflection. For example if I took this code

public class Main {
    public static void main(String[] args) {}
}

class OtherClass {
    private class Test {}
}

is it possible to instantiate and gain access to Test from the main method in the class main.

  • 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-16T16:44:46+00:00Added an answer on June 16, 2026 at 4:44 pm

    When using reflection, you’ll find constructors of that inner class taking an instance of the outer class as an additional argument (always the first) .

    See these questions for related information:

    • Instantiating inner class

    • How can I instantiate a member class through reflection on Android

    • In Java, how do I access the outer class when I'm not in the inner class?

    Example:

    import java.lang.reflect.Constructor;
    import java.lang.reflect.InvocationTargetException;
    
    public class OuterClass {
    
        private class InnerClass {
    
        }
    
        public OuterClass() {
            super();
        }
    
        public static void main(String[] args) {
            // instantiate outer class
            OuterClass outer = new OuterClass();
    
            // List all available constructors.
            // We must use the method getDeclaredConstructors() instead
            // of getConstructors() to get also private constructors.
            for (Constructor<?> ctor : OuterClass.InnerClass.class
                    .getDeclaredConstructors()) {
                System.out.println(ctor);
            }
    
            try {
                // Try to get the constructor with the expected signature.
                Constructor<InnerClass> ctor = OuterClass.InnerClass.class
                        .getDeclaredConstructor(OuterClass.class);
                // This forces the security manager to allow a call
                ctor.setAccessible(true);
    
                // the call
                try {
                    OuterClass.InnerClass inner = ctor.newInstance(outer);
                    System.out.println(inner);
                } catch (InstantiationException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                } catch (IllegalAccessException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                } catch (IllegalArgumentException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                } catch (InvocationTargetException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }
            } catch (NoSuchMethodException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            } catch (SecurityException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
        }
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is this possible somehow? @Name(geolocationService) public interface GeolocationService { @Query(SELECT g FROM Geolocation geolocation
In C#, the following code (from this page) can be used to lazily instantiate
Is it possible in PHP to instantiate an object from the name of a
Is it possible to assure that only spring can instantiate a class, and not
Is this possible? What I want to do is have my doWork method instantiate
I want to know if its possible to hide a base class property from
class UserInfo extends Database{ private $privileges= $this ->connect() ->select(users, DISTINCT privileges, username= 'someuser') ->getResult('privileges');
Given this class: public class OrderService { public OrderService(IOrderLogger log) { this.log = log;
I considered this scenario: objects that roughly look like this: class PhyisicalObject { private:
I have one supertype defined as: public abstract class AType<T> { .... private T

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.