登录
首页 >  文章 >  前端

面向对象编程——封装

来源:dev.to

时间:2024-12-02 10:19:06 274浏览 收藏

一分耕耘,一分收获!既然都打开这篇《面向对象编程——封装》,就坚持看下去,学下去吧!本文主要会给大家讲到等等知识点,如果大家对本文有好的建议或者看到有不足之处,非常欢迎大家积极提出!在后续文章我会继续更新文章相关的内容,希望对大家都有所帮助!

面向对象编程——封装

什么???

封装是将数据和函数捆绑到一个单元(即胶囊)中的过程,它还可以限制对某些数据/方法的访问。

它是 oop 的四大支柱之一,其他三者分别是继承、多态性和数据抽象。

为什么?

采取盲目假设并在所有地方继续使用封装会更容易,但了解原因很重要,这样您才能以正确的方式使用它。

让我们尝试通过查看示例任务来理解原因。

任务:

构建一个学生成绩计算器,

  • 计算平均分
  • 确定学生是否失败或通过
  • 如果任何主题标记无效,则抛出错误 ( < 0 || > 100)

方案一:非封装方式

这个想法只是为了解决问题,所以我选择了过程式编程实现它的方式,我相信它可以显示出很好的对比并使问题看起来更明显。

type subject = "english" | "maths";

interface istudent {
  name: string;
  marks: record<subject, number>;
}

// receive input
const studentinput: istudent = {
  name: "john",
  marks: {
    english: 100,
    maths: 100,
  },
};

// step1: validate the provided marks
object.keys(studentinput.marks).foreach((subjectname) => {
  const mark = studentinput.marks[subjectname as subject];
  if (mark > 100 || mark < 0) {
    throw new error(`invlid mark found`);
  }
});

// step2: find the total marks
const totalmarks = object.keys(studentinput.marks).reduce(
  (accumulator: number, current: string) =>
    studentinput.marks[current as subject] + accumulator,
  0
);

// step3: find the average
const average = totalmarks / object.keys(studentinput.marks).length;

// step4: find the result
const boolresult = average > 40;

// step 5: print result
console.log(boolresult);
console.log(average);

解决方案 1 的问题:

这确实达到了预期的结果,但也存在一些与之相关的问题。仅举几例,

  1. 这里的每个实现都是全局可访问的,并且未来的贡献者无法控制其使用。
  2. 数据和操作是分开的,因此很难追踪哪些函数影响数据。您必须仔细检查每一段代码才能了解调用的内容以及执行的一部分。
  3. 随着逻辑的扩展,函数变得更难管理。由于紧密耦合,更改可能会破坏不相关的代码。

如何解决问题?

通过合并封装或通过执行以下两个步骤使其更加明显,

  1. 对数据和功能的受控访问
  2. 将数据与行为捆绑

解决方案2:封装方式

type SubjectNames = "english" | "maths";

interface IStudent {
  name: string;
  marks: Record<SubjectNames, number>;
}

class ResultCalculator {
  protected student: IStudent;
  constructor(student: IStudent) {
    this.student = student;
  }

  isPassed(): boolean {
    let resultStatus = true;
    Object.keys(this.student.marks).forEach((subject: string) => {
      if (this.student.marks[subject as SubjectNames] < 40) {
        resultStatus = false;
      }
    });
    return resultStatus;
  }

  getAverage(): number {
    this.validateMarks();
    return this.totalMarks() / this.subjectCount();
  }

  private validateMarks() {
    Object.keys(this.student.marks).forEach((subject: string) => {
      if (
        this.student.marks[subject as SubjectNames] < 0 ||
        this.student.marks[subject as SubjectNames] > 100
      ) {
        throw new Error(`invalid mark`);
      }
    });
  }

  private totalMarks() {
    return Object.keys(this.student.marks).reduce(
      (acc, curr) => this.student.marks[curr as SubjectNames] + acc,
      0
    );
  }

  private subjectCount() {
    return Object.keys(this.student.marks).length;
  }
}

// Receive Input
const a: IStudent = {
  name: "jingleheimer schmidt",
  marks: {
    english: 100,
    maths: 100,
  },
};

// Create an encapsulated object
const result = new ResultCalculator(a);

// Perform operations & print results
console.log(result.isPassed());
console.log(result.getAverage());

注意上述解决方案,

  1. 方法totalmarks、subjectcount、validatemarks 和成员变量student 不公开,只能由类对象使用。

2.数据学生与其每一个行为都捆绑在一起。

今天关于《面向对象编程——封装》的内容介绍就到此结束,如果有什么疑问或者建议,可以在golang学习网公众号下多多回复交流;文中若有不正之处,也希望回复留言以告知!

声明:本文转载于:dev.to 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>