class NullPointer
{
   public static void main (String[] args)
   {
      int a = 0;
      Integer[] feld = new Integer[5];
      a = feld[3].intValue();
   }
}