I need to have the following declarations:
private static String[] BASE = new String[] { "a", "b", "c" };
private static String[] EXTENDED = BASE + new String[] { "d", "e", "f" };
The first line declares a string array with three (or more) string values. The second line should declare a string array with all the string values from BASE and then add three (or more) string values.
Is this possible? If yes... how?