楼主请看吧,不过建议下次想快速得到答案,就得给分的,不然没多少人愿意跟我一样当免费劳动力的。
看看吧,很详细了。
public class Test{
String str;
public Test(){
}
public void getCat(){
System.out.println("This is a Cat!");
}
public void getDog(){
System.out.println("This is a Dog!");
}
public void getAnimal(){
getCat();//在除了Main()方法中调用其他方法需要new实例之外,其他内中调用不需要
getDog();
}
public static void main(String[] args){
Test test = new Test();//构造出本类的实例,然后用实例去调用方法名
test.getCat();
test.getDog();
}