Я думал внутри NULL ничего не может быть в принципе, но вновь ошибся: interface Body { String hotHeart = " is alive" ;} public class Test { public static void main(String[] args) { Body [] arr = new Body[3]; for (Body b : arr) { System.out.println("Im "+b+" but my heart"+b.hotHeart); } } }