What is the native keyword in Java for?

后端 未结 10 1562
粉色の甜心
粉色の甜心 2020-11-22 10:52

While playing this puzzle (It\'s a Java keyword trivia game), I came across the native keyword.

What is the native keyword in Java used for?

10条回答
  •  感动是毒
    2020-11-22 11:37

    The native keyword is applied to a method to indicate that the method is implemented in native code using JNI (Java Native Interface).

提交回复
热议问题