
- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
What is the difference between a Java method and a native method?
A native method is the one whose method implementation is done in other languages like c++ and Java. These programs are linked to Java using JNI or JNA interfaces.
The difference between normal method and native method is That the native method declaration contains native keyword and, the implementation of the method will be other programming language.
Example
Tester.java
public class Tester { public native int getValue(int i); public static void main(String[] args) { System.loadLibrary("Tester"); System.out.println(new Tester().getValue(2)); } }
Tester.c
#include <jni.h> #include "Tester.h" JNIEXPORT jint JNICALL Java_Tester_getValue( JNIEnv *env, jobject obj, jint i) { return i * i; }
Compile and run
javac Tester.java javah -jni Tester gcc -shared -fpic -o libTester.so -I${JAVA_HOME}/include \ -I${JAVA_HOME}/include/linux Tester.c java -Djava.library.path=. Tester
Output
4
- Related Questions & Answers
- What is difference between a Java method and native method
- What is the difference between java method and native method?
- What is the difference between a method and a function?
- What is the difference between method hiding and method overriding in Java?
- What is the difference between method overloading and method hiding in Java?
- What is the difference between method overloading and method overriding in Java?
- What is the difference between equals() method and == operator in java?
- What is the difference between operator and method on Python set?
- Difference between constructor and method in Java
- Difference between == and equals() method in Java.
- Difference between green and native thread
- What is the difference between function overriding and method hiding in C#?
- Difference Between sleep() and wait() Method in Java
- What is the difference between a StringBuffer and StringBuilder in java?
- What is difference between GET and POST method in HTTP protocol?
Advertisements