Are native Java methods equivalent to static Java methods?(本机 Java 方法是否等同于静态 Java 方法?)
问题描述
我正在将一些本机方法重写为常规 Java 方法.
I am rewriting some native methods as regular Java methods.
本地方法实际上是静态的吗?或者是否有过隐含this"参数的情况?
Are native methods effectively static? Or is there ever a case where they have an implicit 'this' parameter?
谢谢!
推荐答案
Native 方法可以是 static
或非 static
,就像常规 Java 方法一样.
Native methods can be static
or non-static
, just like regular Java methods.
非static
原生方法接收 this
引用,static
则接收对包含类的引用.
Non-static
native methods receive this
reference, static
ones receive a reference to containg class instead.
来自 JNI 规范:
本机方法参数
JNI 接口指针是本地方法的第一个参数.JNI 接口指针的类型为 JNIEnv.第二个参数根据本机方法是静态的还是非静态的而有所不同.非静态本机方法的第二个参数是对对象的引用.静态本机方法的第二个参数是对其 Java 类的引用.
The JNI interface pointer is the first argument to native methods. The JNI interface pointer is of type JNIEnv. The second argument differs depending on whether the native method is static or nonstatic. The second argument to a nonstatic native method is a reference to the object. The second argument to a static native method is a reference to its Java class.
这篇关于本机 Java 方法是否等同于静态 Java 方法?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:本机 Java 方法是否等同于静态 Java 方法?
基础教程推荐
- 由于对所需库 rt.jar 的限制,对类的访问限制? 2022-01-01
- 如何使用 Stream 在集合中拆分奇数和偶数以及两者的总和 2022-01-01
- 如何对 HashSet 进行排序? 2022-01-01
- 在螺旋中写一个字符串 2022-01-01
- 首次使用 Hadoop,MapReduce Job 不运行 Reduce Phase 2022-01-01
- 如何强制对超级方法进行多态调用? 2022-01-01
- 如何使用 Eclipse 检查调试符号状态? 2022-01-01
- 如何在不安装整个 WTP 包的情况下将 Tomcat 8 添加到 Eclipse Kepler 2022-01-01
- Java 中保存最后 N 个元素的大小受限队列 2022-01-01
- Spring Boot Freemarker从2.2.0升级失败 2022-01-01