[更新中]面向对象程序设计笔记

Posted passguan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[更新中]面向对象程序设计笔记相关的知识,希望对你有一定的参考价值。

面向对象(object-oriented)程序设计

1

  • IDE的功能

    2

  • 关注的是对象,不是流程
  • 对象可以是任何东西
  • 面向对象既适用于设计,也适用于实现
  • 对象里封装着方法,通过接口调用,即对象等于数据和包装数据的操作
  • 对象之间交互的形式是消息Objects send message
  • Messages are:1.Composed by the sender 2.Interpreted by the receiver 3.Implemented by methods
  • Messages may cause receiver to change state
  • Messages may return results
  • Class defines Object -------Object is a Class -------- cat and cat class
  • OOP Characteristics
  • Q:Are Messages Objects? Are Outputs Objects?

    OOP Characteristics

  • Everything is an object
  • A program is a bunch of objects telling each other what to so by sending messages
  • Each object has its own memory made up of other objects
  • Every object has a type
  • All objects of a particular type can receive the same messages

以上是关于[更新中]面向对象程序设计笔记的主要内容,如果未能解决你的问题,请参考以下文章

VSCode自定义代码片段——JS中的面向对象编程

VSCode自定义代码片段9——JS中的面向对象编程

学习笔记27面向对象学习

设计模式学习笔记面向对象是什么?

设计模式学习笔记 面向对象相比于面向过程的优势是什么?

Java学习笔记之十三初探Java面向对象的过程及代码实现