有必要写一个带有学生学习方法的课堂。让它成为任务1。接下来,我需要编写另一个类,该类将包含数组中任务1的对象。 据我了解,应该出现[{name:''...},{name:``}}]之类的东西 但是如何正确编写它,我只是听不懂或者我很愚蠢
是否可以立即创建一个带有对象的数组,或者这是通过方法完成的?
class Student {
constructor(fName, lName, birth, marks) {
this.fName = fName;
this.lName = lName;
this.birth = birth;
this.marks = marks;
this.attendance = [];
}
midAttendance() {
var count = 0;
var sum = 0;
for (var i = 0; i < this.attendance.length; i++) {
if (this.attendance[i] === 'true') {
count++;
sum++;
} else {
sum++;
}
}
return count / sum;
}
getAge() {
return new Date().getFullYear() - this.birth;
}
midMark() {
var count = 0;
var sum = 0;
for (var i = 0; i < this.marks.length; i++) {
count++;
sum += this.marks[i];
}
return (sum / count);
}
present() {
if (this.attendance.length < 25) {
this.attendance.push('true');
} else {
alert("full")
};
}
absent() {
if (this.attendance.length < 25) {
this.attendance.push('false');
} else {
alert("full")
};
}
summary() {
var mMark = this.midMark();
var mAttendance = this.midAttendance();
if (mMark > 90 && mAttendance > 0.9) {
return "molodec";
} else if ((mMark > 90 && mAttendance <= 0.9) || (mMark <= 90 && mAttendance > 0.9)) {
return "norm";
} else {
return "rediska";
}
}
}
class Students extends Student {
constructor() {
super(fName, lName, birth, marks);
}
let arr = [];
getStudents() {
}
}
let student1 = new Student('alex', 'petrov', '1999', [90, 94, 91, 91, 90]);
let student2 = new Student('vova', 'ivanov', '1994', [2, 3, 4, 3, 5]);
答案 0 :(得分:2)
Students
不应扩展Student
。 extends
用于定义代表IS-A关系的子类。但是学生名单并不是一种学生。
Students
应该是一个完全独立的类,例如
class Students {
constructor() {
this.arr = [];
}
addStudent(s) {
this.arr.push(s);
}
removeStudent(s) {
let index = this.arr.indexOf(s);
if (index > -1) {
this.arr.splice(index, 1);
}
}
getStudents() {
return this.arr.slice(); // make a copy so they can't modify the actual array
}
}
那么您可以做:
let class = new Students;
class.addStudent(student1);
class.addStudent(student2);
console.log(class.getStudents());
答案 1 :(得分:0)
这将创建一系列学生对象,并为您提供正确的输出。
const students = [student1, student2]
答案 2 :(得分:0)
首先,为您提供一些提示! 学生不应延长学生班级。这种遗产具有不同的目的。 另外,我将重写Student的方法以使其目标更加清晰。
如果要返回学生对象的数组,建议您循环/映射一组学生,然后为每个学生返回一个格式化的对象,该对象将被推送到数组中。
在Student类上,您还可以创建一个返回格式化对象的方法,而不仅仅是循环/映射通过执行该方法并将返回值推入数组的学生数组。