interface InterfaceTest { public int actionPerformed( int i, double x); public static final int MagicNumber = 42; } public class InterfaceArrayTest { public static void main(String[] args) { InterfaceTest[] is = new InterfaceTest[10]; System.out.println("L = " + is.length); } }