droid_wrap_derive

Attribute Macro java_constructor

Source
#[java_constructor]
Expand description

实现java类的构造器,将此属性标记在fn函数上,可以自动实现调用java类的构造器。

§Arguments

  • _: 未使用。
  • input: 函数输入。

returns: TokenStream

§Examples

use droid_wrap_derive::java_constructor;
struct Integer;
impl Integer {
#[java_constructor]
fn new(value: i32) -> Self {}
}