Groovy Mixin on Instance(Dynamic Mixin)

我正在努力实现以下目标:

class A {
  def foo() { "foo" }
}

class B {
  def bar() { "bar" }
}

A.mixin B
def a = new A()

a.foo() + a.bar()

一个显着的区别 – 我想在实例上做mixin:

a.mixin B

但这会导致

groovy.lang.MissingMethodException: No signature of method: A.mixin() is applicable for argument types: (java.lang.class) values: [class B]

有没有办法像Groovy Mixins JSR中提出的那样工作?

解决方法

你可以从Groovy 1.6开始这样做

在实例MetaClass上调用mixin,如下所示:

class A {
  def foo() { "foo" }
}

class B {
  def bar() { "bar" }
}

def a = new A()
a.MetaClass.mixin B

a.foo() + a.bar()

相关文章

背景:    8月29日,凌晨4点左右,某服务告警,其中一个...
https://support.smartbear.comeadyapi/docs/soapui/steps/g...
有几个选项可用于执行自定义JMeter脚本并扩展基线JMeter功能...
Scala和Java为静态语言,Groovy为动态语言Scala:函数式编程,...
出处:https://www.jianshu.com/p/ce6f8a1f66f4一、一些内部...
在运行groovy的junit方法时,报了这个错误:java.lang.Excep...