有如下类:
public class Cat
{
public int _age;
public Cat(int age)
{
this._age = age;
}
}
定义一个Cat类型的长度为3的数组实例, 其_age分别为2,3,4