what is the use/perpose of having a method antive?
Answers were Sorted based on User's Feedback
Answer / imtiyaz
if you want to call a methods which are specific to the
platform or if you want to use the OS calls or if you want
to use functionality which is developed in other language
we go through native interface.
In a real world we need to execute statements which are
specific to platform which java may or may not do, and
other language can do much faster than java at that time we
use to write the methods in that language and use that code.
And sometimes the code already developed in other language
and it is very cost effective or time consuming to convert
the code into java at that moments also we use java native
interface.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / ravikiran
native method is used to call the methods declared in a
platform dependent environment.
| Is This Answer Correct ? | 0 Yes | 0 No |
Can a java program have 2 main methods?
How the elements are organized in GridLayout?
Which is faster set or list in java?
How is rounding performed under integer division?
what is the use/perpose of having a method antive?
How to excute - Interface - Inner class- method can any one tell how to execute/ call this main method public interface abc { static int i=0; void dd(); class a1 { a1() { int j; System.out.println("inside"); }; public static void main(String a1[]) { System.out.println("in interfia"); } } }
What is the difference between abstract class and interface1? What is an interface?
Define a package.
What is the maximum size of byte array in java?
What are runtime exceptions?
what is object type casting? give some example with related?
Explain java thread life cycle.