package com.msb.strategy; /** * @Author bingor * @Date 2022-10-06 17:12 * @Description: com.msb.strategy * @Version: 1.0 */ public class Cat2 { private int weight, height; public Cat2(int weight, int height) { this.weight = weight; this.height = height; } @Override public String toString() { return "Cat2{" + "weight=" + weight + ", height=" + height + '}'; } public int getWeight() { return weight; } public int getHeight() { return height; } }