class Cat{
String name;
int age;
Cat(){
String name = "Tom";
int age = 3;
}
}
I have a confusion about if Cat() is a default constructor or a no argument constructor(non default constructor).I just want to that here Cat() is a default constructor or a no argument constructor(non default constructor)?