回答:
public void foo(Class c){
try {
Object ob = c.newInstance();
} catch (InstantiationException ex) {
Logger.getLogger(App.class.getName()).log(Level.SEVERE, null, ex);
} catch (IllegalAccessException ex) {
Logger.getLogger(App.class.getName()).log(Level.SEVERE, null, ex);
}
}
リフレクションを使用してメソッドを呼び出す方法
import java.lang.reflect.*;
public class method2 {
public int add(int a, int b)
{
return a + b;
}
public static void main(String args[])
{
try {
Class cls = Class.forName("method2");
Class partypes[] = new Class[2];
partypes[0] = Integer.TYPE;
partypes[1] = Integer.TYPE;
Method meth = cls.getMethod(
"add", partypes);
method2 methobj = new method2();
Object arglist[] = new Object[2];
arglist[0] = new Integer(37);
arglist[1] = new Integer(47);
Object retobj
= meth.invoke(methobj, arglist);
Integer retval = (Integer)retobj;
System.out.println(retval.intValue());
}
catch (Throwable e) {
System.err.println(e);
}
}
}
こちらもご覧ください
public void callingMethod(Class neededClass) {
//Cast the class to the class you need
//and call your method in the class
((ClassBeingCalled)neededClass).methodOfClass();
}
メソッドを呼び出すには、次のように呼び出します。
callingMethod(ClassBeingCalled.class);
それを受け入れるようにメソッドを作成します-
public <T> void printClassNameAndCreateList(Class<T> className){
//example access 1
System.out.print(className.getName());
//example access 2
ArrayList<T> list = new ArrayList<T>();
//note that if you create a list this way, you will have to cast input
list.add((T)nameOfObject);
}
メソッドを呼び出す
printClassNameAndCreateList(SomeClass.class);
クラスのタイプを制限することもできます。たとえば、これは私が作成したライブラリのメソッドの1つです。
protected Class postExceptionActivityIn;
protected <T extends PostExceptionActivity> void setPostExceptionActivityIn(Class <T> postExceptionActivityIn) {
this.postExceptionActivityIn = postExceptionActivityIn;
}
詳細については、ReflectionおよびGenericsを検索してください。
このようなことは簡単ではありません。静的メソッドを呼び出すメソッドは次のとおりです。
public static Object callStaticMethod(
// class that contains the static method
final Class<?> clazz,
// method name
final String methodName,
// optional method parameters
final Object... parameters) throws Exception{
for(final Method method : clazz.getMethods()){
if(method.getName().equals(methodName)){
final Class<?>[] paramTypes = method.getParameterTypes();
if(parameters.length != paramTypes.length){
continue;
}
boolean compatible = true;
for(int i = 0; i < paramTypes.length; i++){
final Class<?> paramType = paramTypes[i];
final Object param = parameters[i];
if(param != null && !paramType.isInstance(param)){
compatible = false;
break;
}
}
if(compatible){
return method.invoke(/* static invocation */null,
parameters);
}
}
}
throw new NoSuchMethodException(methodName);
}
更新: ちょっと待って、質問でgwtタグを見たところです。GWTではリフレクションを使用できません
あなたが何を成し遂げようとしているのかはわかりませんが、クラスを渡すことは本当にあなたがする必要があることではないかもしれないと考えたいかもしれません。多くの場合、このようなクラスの処理は、あるタイプのファクトリパターン内に簡単にカプセル化され、その使用はインターフェースを介して行われます。そのパターンに関する数十の記事の1つを以下に示します。http://today.java.net/pub/a/today/2005/03/09/factory.html
ファクトリー内でのクラスの使用は、さまざまな方法で、特に必要なインターフェースを実装するクラスの名前を含む構成ファイルを作成することで実現できます。次に、ファクトリーはクラスパス内からそのクラスを見つけ、指定されたインターフェースのオブジェクトとしてそれを構築できます。
これら:Se http://download.oracle.com/javase/tutorial/extra/generics/methods.html
テンプレートメソッドの説明は次のとおりです。
JavaのリフレクションチュートリアルとリフレクションAPIをご覧ください。
https://community.oracle.com/docs/DOC-983192 リンクの説明をここに入力してください
そして
http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html
パラメータとしてのクラス。例。
3つのクラス:
class TestCar {
private int UnlockCode = 111;
protected boolean hasAirCondition = true;
String brand = "Ford";
public String licensePlate = "Arizona 111";
}
-
class Terminal {
public void hackCar(TestCar car) {
System.out.println(car.hasAirCondition);
System.out.println(car.licensePlate);
System.out.println(car.brand);
}
}
-
class Story {
public static void main(String args[]) {
TestCar testCar = new TestCar();
Terminal terminal = new Terminal();
terminal.hackCar(testCar);
}
}
クラスのTerminalメソッドでは、hackCar()はクラスとしてTestCarをパラメーターとして受け取ります。