System

A simple java.lang.System implementation.

Methods
static void arraycopy(char[] src, int srcPos, char[] dest, int destPos, int length)
Copy data from the source to the target.
static void arraycopy(char[] src, int srcPos, char[] dest, int destPos, int length)
Copy data from the source to the target. Source and target may overlap.
Parameters:
src - the source array
srcPos - the first element in the source array
dest - the destination
destPos - the first element in the destination
length - the number of element to copy
static void arraycopy(byte[] src, int srcPos, byte[] dest, int destPos, int length)
Copy data from the source to the target.
static void arraycopy(byte[] src, int srcPos, byte[] dest, int destPos, int length)
Copy data from the source to the target. Source and target may overlap.
Parameters:
src - the source array
srcPos - the first element in the source array
dest - the destination
destPos - the first element in the destination
length - the number of element to copy
static long nanoTime()
Get the current time in milliseconds since 1970-01-01.
static long nanoTime()
Get the current time in milliseconds since 1970-01-01.
Returns:
the milliseconds

Fields
static PrintStream out

out

The stdout stream.