DogTest.java 336 B

12345678910111213141516171819
  1. package exercise.exercise01;
  2. /**
  3. * @author WanJl
  4. * @version 1.0
  5. * @title DogTest
  6. * @description
  7. * @create 2026/7/21
  8. */
  9. public class DogTest {
  10. public static void main(String[] args) {
  11. Dog d1=new Dog("小美","博美");
  12. Dog d2=new Dog("大黄","金毛");
  13. d1.showInfo();
  14. d2.showInfo();
  15. }
  16. }