This week's book giveaway is in the General Computing forum. We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line! See this thread for details.
Hi guyz, I never thought that sequence of return type & static matters for compiler! Means, static void aMethod() is different from void static aMethod()!! Why it is so?? Bye. Viki. ------------------ Count the flowers of ur garden,NOT the leafs which falls away!
public static synchronized native void amethod(); synchronized public static native void amethod(); synchronized native static public void amethod(); native public synchronized static void amethod(); The method modifiers can be in any order, but the return type must immediately precede the method name.
Vikrama Sanjeeva
Ranch Hand
Joined: Sep 02, 2001
Posts: 756
posted
0
Thanx Tony & Jim.Now i can realize that i am standing under SUN Bye. Viki. ------------------ Count the flowers of ur garden,NOT the leafs which falls away!