实例化抽象超类的子类

时间:2012-10-24 18:48:48

标签: java reflection subclass instantiation invoke

我有一个像这样的超级类,它有一个工厂方法:

@DiscriminatorColumn(
      name = "etype",
      discriminatorType = DiscriminatorType.STRING
)
public abstract class ChallengeReward {
      public static ChallengeReward createFromFactory(String rewardType){
      ChallengeRewardType type = ChallengeReward.fromString(rewardType);

      ChallengeReward challengeReward = null;
      switch(type){
      case point:
         challengeReward = new PointChallengeReward();
         break;
      case notification:
         challengeReward = new NotificationChallengeReward();
         break;
      case item:
         challengeReward = new ItemChallengeReward();
         break;
      }

      return challengeReward;
   }

   public String getClientId(){
      return "ABCDEF";
   }
}

和subClasses本身没有构造函数。因此,所有挑战奖励都存在于同一个表中,并带有一个名为“etype”的鉴别器列。

问题是现在我想反思性地调用方法getClientId(),但是我无法实例化ChallengeReward,因为它是抽象的。所以我需要实例化它的一个子类,但我不能做subclass.newInstance()。

我有什么选择?

编辑1: 对不起,我的问题不是很清楚。问题是我正在编写一个通用的servlet,它将遍历包中的所有类,因此需要进行反射。虽然该方法实际上是静态的,但我不知道如何静态调用它,因为我只知道运行时的当前类。

编辑2: 事实证明你可以调用method.invoke(null)来调用静态方法,谢谢madth3

1 个答案:

答案 0 :(得分:1)

我认为您可以通过使用类名本身来获取method,然后调用以下方法:

     String clientId = null;
     Class challengeRewardClass =Class.forName(ChallengeReward.class.getName());
     Method[] methods = challengeRewardClass.getMethods();
     for(Method method: methods){
        if(method.getName().equals("getClientId")){
            clientId = method.invoke(objectoToBeUsedForMethodCall, null);
        }
     }