//Animal_thisNG.java public class Animal_thisNG{ protected static String group = "生き物です。"; protected String name; public Animal_thisNG(){ System.out.println("Hello!"); this("無名"); } public Animal_thisNG(String name){ this.name = name; } public static void printGroup(){ System.out.println(group); } public void printName(){ System.out.println(name + "だぞ! ガオー!"); } }