Native Methods : native « Modifiers « SCJP

Home
SCJP
1.Java Source And Data Type
2.Operators
3.Modifiers
4.Type Casting
5.Statements
6.Object Oriented
7.Thread
8.Utility Classes
9.File
SCJP » Modifiers » native 
3.11.1.Native Methods
The native modifier applies only to methods.

The native modifier indicates that a method is implemented in platform-dependent code. 

native method's body must be a semicolon (;indicating that the implementation is omitted.



class NativeExample {
   native void doSomethingLocal(int i);

   static {
     System.loadLibrary("MyNativeLib");
   }
 }
3.11.native
3.11.1.Native Methods
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.