vektor inline java

int[] a = {1, 2, 3, 4, 5};

//or

int[] a;
a = new int[]{1, 2, 3, 4};
Baggi