一个类怎样调用另一个类中的方法

通过在无构造方法中设置(传递)参数的方式

第一个类:

public class Student {


public Student(String task) {
if(task == "F15"){
this.show();
}
}

public void show(){
System.out.println("能通过给有参构造方法传入参数获取show方法");
}

}


第二个类:

public class Hello {

public static void main(String[] args) {

Student s = new Student("F15");
}
}


运行结果:

能通过给有参构造方法传入参数获取show方法

你可能感兴趣的:(类中方法的调用)