Calling static method on a class? - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T04:41:28Zhttp://stackoverflow.com/feeds/question/942326http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/942326/calling-static-method-on-a-class0Calling static method on a class?gsmd2009-06-02T22:53:09Z2009-06-02T23:48:38Z
<p>Say, I have a reference to a Class object with SomeType having a static method. Is there a way to call that method w/o instantiating SomeType first? Preferably not escaping strong typing.</p>
<p>EDIT: OK, I've screwed up.</p>
<pre><code>interface Int{
void someMethod();
}
class ImplOne implements Int{
public void someMethod() {
// do something
}
}
Class<? extends Int> getInt(){
return ImplOne.class;
}
</code></pre>
<p>In this case someMethod() can't be static anyways.</p>
http://stackoverflow.com/questions/942326/calling-static-method-on-a-class/942330#9423303Answer by Nalandial for Calling static method on a class?Nalandial2009-06-02T22:54:57Z2009-06-02T23:01:46Z<p>I'm not sure exactly what the situation is, but if you're looking to execute the static method on a class without knowing the class type (i.e. you don't know it's SomeType, you just have the Class object), if you know the name and parameters of the method you could use reflection and do this:</p>
<pre><code>Class c = getThisClassObjectFromSomewhere();
//myStaticMethod takes a Double and String as an argument
Method m = c.getMethod("myStaticMethod", Double.class, String.class);
Object result = m.invoke(null, 1.5, "foo");
</code></pre>
http://stackoverflow.com/questions/942326/calling-static-method-on-a-class/942334#9423349Answer by Yuval A for Calling static method on a class?Yuval A2009-06-02T22:56:20Z2009-06-02T22:56:20Z<p>A static method, by definition, is called on a class and not on an instance of that class.</p>
<p>So if you use:</p>
<pre><code>SomeClass.someStaticMethod()
</code></pre>
<p>you are instantiating nothing (leave aside the class loading and instantiation of the <code>SomeClass</code> class itself, which the JVM handles and is way out of your scope).</p>
<p>This is opposed to a regular method called on an object, which has already been instantiated:</p>
<pre><code>SomeObject o = someObject; // had to be instantiated *somewhere*
o.someMethod();
</code></pre>
http://stackoverflow.com/questions/942326/calling-static-method-on-a-class/942339#9423391Answer by Carl Manaster for Calling static method on a class?Carl Manaster2009-06-02T22:57:45Z2009-06-02T22:57:45Z<p>Yes. That's what static methods are all about. Just call it. SomeType.yourStaticMethodHere().</p>
http://stackoverflow.com/questions/942326/calling-static-method-on-a-class/942367#9423671Answer by JS Bangs for Calling static method on a class?JS Bangs2009-06-02T23:07:28Z2009-06-02T23:07:28Z<p>Since you talk about a Class object, I assume that you're interested in Java reflection. Here's a brief snippet that does what you're trying to do:</p>
<pre><code>Class someClass = SomeType.class;
Method staticMethod = someClass.getMethod( "methodName", ... );
// pass the first arg as null to invoke a static method
staticMethod.invoke( null, ... );
</code></pre>