- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有 2 个类 - “Student”和“Employee”,它们都扩展了 Person 类。所有 3 个类都有内部方法。在我的演示类中,我必须从每个类(学生、员工和人员)创建 2 个对象,并将它们放入 Person 类型的数组中。然后我必须遍历数组,并根据对象是否来自学生、员工或人员,我必须调用此类/子类中的方法。问题是,一旦这些对象进入 Person 数组,只有 Person 类中的 .methods 可见。如果我的 array[i]."method"来自学生或员工(array[i].showStudentInfo() 和 array[i].showEmplyeeInfo()),如何才能找到它预先感谢您!
public class Person {
String name;
int age;
boolean isMan;
Person(String name, int age, boolean isMan) {
this.name = name;
this.age = age;
this.isMan = isMan;
}
void showPersonInfo() {
System.out.println("Име: " + this.name + " | " + "години: " + this.age + " | " + "мъж ли е: " + this.isMan);
}
}
public class Student extends Person {
double score;
Student(String name, int age, boolean isMan, double score) {
super(name, age, isMan);
this.score = score;
}
public void showStudentInfo() {
System.out.println("Име: " + super.name + " | " + "години: " + super.age + " | " + "мъж ли е: " + " | "
+ super.isMan + " | " + "Оценка: " + this.score);
}
}
public class Employee extends Person {
double daySallary;
double extraSum;
Employee(String name, int age, boolean isMan, double daySallary){
super(name, age, isMan);
this.daySallary=daySallary;
}
double calculateOvertime(double hours) {
if (this.age< 18)
extraSum = 0;
else
extraSum = (this.daySallary / 8) * hours * 1.5;
return extraSum;
}
public void showEmployeeInfo() {
System.out.println("Име: " + super.name + " | " + "години: " + super.age + " | " + "мъж ли е: " + " | "
+ super.isMan + " | " + "Допълнителна сума от оставане след работно време: " + this.extraSum);
}
}
public class Demo {
public static void main(String[] args) {
Person ivan = new Person("Ivan Georgiev", 27, true);
Person nikola = new Person("Nikola Ivanov", 30, true);
Student iskra = new Student("Iskra Dimitrova", 21, false, 4.5);
Student georgi = new Student("Georgi Kazakov", 19, true, 5.5);
Employee neli = new Employee("Anelia Stoicheva", 35, false, 50);
Employee monika = new Employee("Monika Petrova", 42, false, 80);
Person[] array = new Person[10];
array[0] = ivan;
array[1] = nikola;
array[2] = iskra;
array[3] = georgi;
array[4] = neli;
array[5] = monika;
for (int i = 0; i < 6; i++) {
if (array[i].getClass().equals(ivan.getClass())) {
array[i].showPersonInfo();
}
if (array[i].getClass().equals(iskra.getClass())) {
array[i].showStudentInfo();
}
if (array[i].getClass().equals(neli.getClass())) {
array[i].showEmployeeInfo();
}
}
最佳答案
就您而言,由于您已经确认在循环的每次迭代期间正在处理的 Person
类型,因此您可以根据需要将 Person
简单地转换为 Employee
或 Student
:
if (array[i].getClass().equals(iskra.getClass())) {
((Student)array[i]).showStudentInfo();
}
<小时/>
但是,更好的想法是遵循更标准的面向对象编程模型。由于从 Person
扩展的所有类都有一个显示信息的方法,因此您应该在 Person
类中声明该方法并让子级重写它。
通过在 Person
类中声明 showInfo()
方法,您可以确保您的 for
循环可以访问该方法,无论您使用的是哪种类型的 Person
。
人员类别:
public class Person {
String name;
int age;
boolean isMan;
Person(String name, int age, boolean isMan) {
this.name = name;
this.age = age;
this.isMan = isMan;
}
public void showInfo() {
System.out.println("Име: " + this.name + " | " + "години: " + this.age + " | " + "мъж ли е: " + this.isMan);
}
// SETTERS and GETTERS
}
学生类(class):
public class Student extends Person {
double score;
Student(String name, int age, boolean isMan, double score) {
super(name, age, isMan);
this.score = score;
}
@Override
public void showInfo() {
System.out.println("Име: " + super.name + " | " + "години: " + super.age + " | " + "мъж ли е: " + " | "
+ super.isMan + " | " + "Оценка: " + this.score);
}
// SETTERS and GETTERS
}
员工类别:
public class Employee extends Person {
double daySallary;
double extraSum;
Employee(String name, int age, boolean isMan, double daySallary) {
super(name, age, isMan);
this.daySallary = daySallary;
}
double calculateOvertime(double hours) {
if (this.age < 18)
extraSum = 0;
else
extraSum = (this.daySallary / 8) * hours * 1.5;
return extraSum;
}
@Override
public void showInfo() {
System.out.println("Име: " + super.name + " | " + "години: " + super.age + " | " + "мъж ли е: " + " | "
+ super.isMan + " | " + "Допълнителна сума от оставане след работно време: " + this.extraSum);
}
}
<小时/>
从那里,您可以更新您的 Demo
类,以简单地调用每个 Person
上的 showInfo()
方法,而不必首先专门检查 Person
的类型:
for (i = 0; i < array.length; i++) {
array[i].showInfo();
}
关于java - 将子类中的对象放入父类(super class)类型的数组后如何调用子类方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55079150/
我正在尝试创建一个包含 int[][] 项的数组 即 int version0Indexes[][4] = { {1,2,3,4}, {5,6,7,8} }; int version1Indexes[
我有一个整数数组: private int array[]; 如果我还有一个名为 add 的方法,那么以下有什么区别: public void add(int value) { array[va
当您尝试在 JavaScript 中将一个数组添加到另一个数组时,它会将其转换为一个字符串。通常,当以另一种语言执行此操作时,列表会合并。 JavaScript [1, 2] + [3, 4] = "
根据我正在阅读的教程,如果您想创建一个包含 5 列和 3 行的表格来表示这样的数据... 45 4 34 99 56 3 23 99 43 2 1 1 0 43 67 ...它说你可以使用下
我通常使用 python 编写脚本/程序,但最近开始使用 JavaScript 进行编程,并且在使用数组时遇到了一些问题。 在 python 中,当我创建一个数组并使用 for x in y 时,我得
我有一个这样的数组: temp = [ 'data1', ['data1_a','data1_b'], ['data2_a','data2_b','data2_c'] ]; // 我想使用 toStr
rent_property (table name) id fullName propertyName 1 A House Name1 2 B
这个问题在这里已经有了答案: 关闭13年前。 Possible Duplicate: In C arrays why is this true? a[5] == 5[a] array[index] 和
使用 Excel 2013。经过多年的寻找和适应,我的第一篇文章。 我正在尝试将当前 App 用户(即“John Smith”)与他的电子邮件地址“jsmith@work.com”进行匹配。 使用两个
当仅在一个边距上操作时,apply 似乎不会重新组装 3D 数组。考虑: arr 1),但对我来说仍然很奇怪,如果一个函数返回一个具有尺寸的对象,那么它们基本上会被忽略。 最佳答案 这是一个不太理
我有一个包含 GPS 坐标的 MySQL 数据库。这是我检索坐标的部分 PHP 代码; $sql = "SELECT lat, lon FROM gps_data"; $stmt=$db->query
我需要找到一种方法来执行这个操作,我有一个形状数组 [批量大小, 150, 1] 代表 batch_size 整数序列,每个序列有 150 个元素长,但在每个序列中都有很多添加的零,以使所有序列具有相
我必须通过 url 中的 json 获取文本。 层次结构如下: 对象>数组>对象>数组>对象。 我想用这段代码获取文本。但是我收到错误 :org.json.JSONException: No valu
enter code here- (void)viewDidLoad { NSMutableArray *imageViewArray= [[NSMutableArray alloc] init];
知道如何对二维字符串数组执行修剪操作,例如使用 Java 流 API 进行 3x3 并将其收集回相同维度的 3x3 数组? 重点是避免使用显式的 for 循环。 当前的解决方案只是简单地执行一个 fo
已关闭。此问题需要 debugging details 。目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and the
我有来自 ASP.NET Web 服务的以下 XML 输出: 1710 1711 1712 1713
如果我有一个对象todo作为您状态的一部分,并且该对象包含数组列表,则列表内部有对象,在这些对象内部还有另一个数组listItems。如何更新数组 listItems 中 id 为“poi098”的对
我想将最大长度为 8 的 bool 数组打包成一个字节,通过网络发送它,然后将其解压回 bool 数组。已经在这里尝试了一些解决方案,但没有用。我正在使用单声道。 我制作了 BitArray,然后尝试
我们的数据库中有这个字段指示一周中的每一天的真/假标志,如下所示:'1111110' 我需要将此值转换为 boolean 数组。 为此,我编写了以下代码: char[] freqs = weekday
我是一名优秀的程序员,十分优秀!