package zh.codegym.task.task05.task0504; /* 三个“火枪手” */ public class Solution { public static void main(String[] args) { //在此编写你的代码 Cat cat1 = new Cat(); Cat cat2 = new Cat(); Cat cat3 = new Cat(); } public static class Cat { private String name; private int age; private int weight; private int strength; public Cat(String name, int age, int weight, int strength) { this.name = name; this.age = age; this.weight = weight; this.strength = strength; } } }