Client and backend. This class is shared: the same code is compiled into your app and into your server, so everything on this page works in both.
public final class Math
- Object
- Math
Fields
public static final double E = 2.718281828459045 | The double value that is closer than any other to e, the base of the natural logarithms. |
public static final double PI = 3.141592653589793 | The double value that is closer than any other to , the ratio of the circumference of a circle to its diameter. |
Constructors
public Math() |
Methods
public static double abs(double a) | Returns the absolute value of a double value. |
public static float abs(float a) | Returns the absolute value of a float value. |
public static int abs(int a) | Returns the absolute value of an int value. |
public static long abs(long a) | Returns the absolute value of a long value. |
public static double ceil(double a) | Returns the smallest (closest to negative infinity) double value that is not less than the argument and is equal to a mathematical integer. |
public static double cos(double a) | Returns the trigonometric cosine of an angle. |
public static double floor(double a) | Returns the largest (closest to positive infinity) double value that is not greater than the argument and is equal to a mathematical integer. |
public static double max(double a, double b) | Returns the greater of two double values. |
public static float max(float a, float b) | Returns the greater of two float values. |
public static int max(int a, int b) | Returns the greater of two int values. |
public static long max(long a, long b) | Returns the greater of two long values. |
public static double min(double a, double b) | Returns the smaller of two double values. |
public static float min(float a, float b) | Returns the smaller of two float values. |
public static int min(int a, int b) | Returns the smaller of two int values. |
public static long min(long a, long b) | Returns the smaller of two long values. |
public static double sin(double a) | Returns the trigonometric sine of an angle. |
public static double sqrt(double a) | Returns the correctly rounded positive square root of a double value. |
public static double tan(double a) | Returns the trigonometric tangent of an angle. |
public static double toDegrees(double angrad) | Converts an angle measured in radians to the equivalent angle measured in degrees. |
public static double toRadians(double angdeg) | Converts an angle measured in degrees to the equivalent angle measured in radians. |
public static long round(double d) | Returns the result of rounding the argument to an integer. |
public static int round(float f) | Returns the result of rounding the argument to an integer. |
public static double nextDown(double d) | |
public static double nextAfter(double start, double direction) | |
public static float nextAfter(float start, double direction) |
Inherited methods
Field details
E
public static final double E = 2.718281828459045PI
public static final double PI = 3.141592653589793Constructor details
Math
public Math()Method details
abs
public static double abs(double a)abs
public static float abs(float a)abs
public static int abs(int a)abs
public static long abs(long a)ceil
public static double ceil(double a)cos
public static double cos(double a)floor
public static double floor(double a)max
public static double max(double a, double b)max
public static float max(float a, float b)max
public static int max(int a, int b)max
public static long max(long a, long b)min
public static double min(double a, double b)min
public static float min(float a, float b)min
public static int min(int a, int b)min
public static long min(long a, long b)sin
public static double sin(double a)sqrt
public static double sqrt(double a)tan
public static double tan(double a)toDegrees
public static double toDegrees(double angrad)toRadians
public static double toRadians(double angdeg)round
public static long round(double d)Returns the result of rounding the argument to an integer. The result is
equivalent to (long) Math.floor(d+0.5).
Special cases:
round(+0.0) = (long) +0.0round(-0.0) = (long) +0.0round((anything > Long.MAX_VALUE) = Long.MAX_VALUEround((anything < Long.MIN_VALUE) = Long.MIN_VALUEround(+infinity) = Long.MAX_VALUEround(-infinity) = Long.MIN_VALUEround(NaN) = (long) +0.0
Parameters
ddouble- the value to be rounded.
Returns
round
public static int round(float f)Returns the result of rounding the argument to an integer. The result is
equivalent to (int) Math.floor(f+0.5).
Special cases:
round(+0.0) = (int) +0.0round(-0.0) = (int) +0.0round((anything > Integer.MAX_VALUE) = Integer.MAX_VALUEround((anything < Integer.MIN_VALUE) = Integer.MIN_VALUEround(+infinity) = Integer.MAX_VALUEround(-infinity) = Integer.MIN_VALUEround(NaN) = (int) +0.0
Parameters
ffloat- the value to be rounded.
Returns
nextDown
public static double nextDown(double d)nextAfter
public static double nextAfter(double start, double direction)nextAfter
public static float nextAfter(float start, double direction)