gpt4 book ai didi

java - 从另一个Java类调用内部类的方法

转载 作者:行者123 更新时间:2023-12-01 13:38:55 24 4
gpt4 key购买 nike

我想从 Employee 内部类 employeeInfo 调用 Salarycal() 方法到类 Exc

public class Employee {

public class employeeInfo{
int id;
String name;
int Salary;


public employeeInfo(int id,String name,int Salary){
this.id=id;
this.name=name;
this.Salary=Salary;

System.out.println(id+name+Salary);
}
public int Salarycal(){
int totalSalary =0;
int b=getId();
........
}
}
import Employer.Employee.employeeInfo;

public class Exc {


public static void main(String[] args) {
//want to access the salarycal() method in this class
}

}

最佳答案

这就是我通常调用内部类方法的方式

Inner inner = new Outer().new Inner();
inner.methodToInvoke();

关于java - 从另一个Java类调用内部类的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21005625/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com