Enhanced For Loop - Array of Objects

前端 未结 3 1868
南方客
南方客 2021-02-06 05:42

Ok so I have a class called Dog() which takes two parameters, a string and an integer.
This class has a method called bark(), which prints a string depending on the intege

3条回答
  •  星月不相逢
    2021-02-06 06:12

    About your second question:"Why do I have to start with Dog[] ... new Dog[5]?"

    Its because of same logic you have to put Dog dog=new Dog(); ----(1) That's why Dog[] dogArray=new Dog[5]; ---(2)

    If you don't have problem with the first one then why crib about the second one.

提交回复
热议问题