返回介绍

AndroidJNIHelper.GetConstructorID 获取构造ID

发布于 2019-12-18 15:37:08 字数 2242 浏览 914 评论 0 收藏 0

JavaScript => public static function GetConstructorID(javaClass: IntPtr, signature: string = “”): IntPtr;
C# => public static IntPtr GetConstructorID(IntPtr javaClass, string signature = “”);

Parameters 参数

javaClassRaw JNI Java class object (obtained by calling AndroidJNI.FindClass).
原JNI java类对象(通过调用androidjni.findClass)。
signatureConstructor method signature (e.g. obtained by calling AndroidJNIHelper.GetSignature).\\构造函数的方法签名(例如,通过调用androidjnihelper.getsignature)。

Description 描述

Scans a particular Java class for a constructor method matching a signature.

扫描指定Java类用于构造方法匹配签名。

The signature comparison is done to allow for sub-/base-classes of the class types. If no signature is provided the first constuctor found will be returned.

签名比较不允许子/基类的类型。如果没有提供签名,收个构造将会被返回。


JavaScript =>public static function GetConstructorID(jclass: IntPtr, args: object[]): IntPtr;
C# => public static IntPtr GetConstructorID(IntPtr jclass, object[] args);

Parameters

javaClassRaw JNI Java class object (obtained by calling AndroidJNI.FindClass).
原JNI java类对象(通过调用androidjni。findClass)。
argsArray with parameters to be passed to the constructor when invoked.
当调用时要传递给构造函数的参数数组。

Description 描述

Get a JNI method ID for a constructor based on calling arguments.

获取JNI 方法ID对于基于调用参数的构造函数。

Scans a particular Java class for a constructor method matching a signature based on passed arguments. The signature comparison is done to allow for sub-/base-classes of the class types.

扫描指定Java类用于构造方法匹配签名,签名基于传递过来的参数。签名比较不允许子/基类的类型。

androidjnihelper

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文