Ask Your Question
4

What is a method to retrieve the .class object in Java while avoiding the use of the class name within a static context?

asked 2022-06-13 11:00:00 +0000

plato gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
2

answered 2022-10-20 23:00:00 +0000

david gravatar image

One method to retrieve the .class object in Java while avoiding the use of the class name within a static context is to create an instance of the class using the "new" keyword and then call the getClass() method on the instance. For example:

class MyClass {
  // class definition
}

// in a static context:
MyClass obj = new MyClass();
Class<? extends MyClass> objClass = obj.getClass();

In this example, we create an instance of MyClass called "obj" and then call the getClass() method on it to retrieve the .class object. This approach avoids using the name of the class in a static context, since we are creating an instance of the class rather than referencing it directly.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2022-06-13 11:00:00 +0000

Seen: 8 times

Last updated: Oct 20 '22