Java Reference
In-Depth Information
public static long min(long a, long b);
+ public static float min(float a, float b);
+ public static double min(double a, double b);
+ public static native double sin(double a);
+ public static native double sqrt(double a);
+ public static native double tan(double a);
+ public static double toDegrees(double angrad);
+ public static double toRadians(double angdeg);
}
Class java.lang.Object
public class Object {
// Constructors
public Object();
// Methods
public boolean equals(Object obj);
public final native Class getClass();
public native int hashCode();
public final native void notify();
public final native void notifyAll();
public String toString();
public final native void wait(long timeout);
public final void wait(long timeout, int nanos);
public final void wait();
}
Interface java.lang.Runnable
public interface Runnable {
// Methods
public void run();
}
Class java.lang.Runtime
public class Runtime
extends java.lang.Object {
// Static methods
public static Runtime getRuntime();
// Methods
public void exit(int status);
public native long freeMemory();
public native void gc();
public native long totalMemory();
}
Search WWH ::




Custom Search