编写Java程序 堆栈的接口_java - 错误:调用实现接口的通用方法时,java.lang.AbstractMethodError - 堆栈内存溢出...

我正在尝试使用javassist以编程方式创建和编译实现接口的类(在运行时)。

每当我调用该动态类的实例时,都会收到以下错误消息:

java.lang.AbstractMethodError: FooImpl.test()Ljava/lang/Object;

这是我的界面

public class FooBarInterface {

public T getEntity();

}

这是一个示例实体

public class FooEntity {

@Override

public String toString() {

return "Hello, Foo!";

}

}

这是我以编程方式实现接口的方式

public void test() {

ClassPool classPool = ClassPool.getDefault();

CtClass testInterface = classPool.get(FooBarInterface.class.getName());

CtClass fooImpl = classPool.makeClass("FooImpl");

fooImpl.addInterface(testInterface);

CtMethod testMethod = CtNewMethod.make(

"public com.test.FooEntity getEntity(){" +

"return new com.test.FooEntity();" +

"}",

canImpl

);

fooImpl.addMethod(testMethod);

fooImpl.writeFile();

TestInterface test =

(TestInterface) fooImpl.toClass().newInstance();

System.out.println(test.getEntity());

}

如果我将实现的方法的返回类型更改为Object,则不会收到错误,如下所示:

CtMethod testMethod = CtNewMethod.make(

"public Object getEntity(){" +

"return new com.test.FooEntity();" +

"}",

canImpl

);

然后我成功地打了hello, Foo! 。 我可以将返回类型更改为Object,但是我想进一步了解为什么使用Foo类型返回会产生AbstractMethodError 。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值