cs108 04 oop design

oop design 分为以下几个方面:

- encapsulation and modularity(封装和模块化)

- API/Client interface design(API 接口给调用类者)

- Inheritance hierarchy and interfaces(继承和继承的层次关系)

这里先介绍一个modularity模块化:

一个大的系统是很复杂的, 可能包含了很多复杂的部分, 如果编码中的一个部分可以独立出来而被其他部分所使用, 例如之前的cs106中的画火车的例子, 程序经过软件设计工程分解成小任务后, 不是直接开始编码, 而是看看有哪些部分可以独立出来, 这个独立出来的部分可以被很多子任务所使用(例如画车厢), 火车的车头, 车身和车尾都能利用上, 这个就是模块化 modularity – keep components as separate and independent from each other as possible. 同时, 将哪些部分独立编码进行模块化是需要很多经验的.

Standard Model OOP class Design(标准类设计)

  • Easy for the Client, 做到用户不用读文档, 就能很好的使用你提供的API.
  • Data private
  • one or more constructors(最好多个构造方法)
  • public getters, 给用户提供一些获得部分data的get方法.
  • public setters, 这个可以增加逻辑判断, 看用户修改的部分数据是否合理.
  • Methods as Transactions(参考了数据库中的transactions, 也就是说一个方法执行前是一个状态, 执行后是一个状态, 如果执行过程中出现问题, 那么要退回到执行前的状态并返回一个message)
  • Pirvate utility, You may decompose out a method for your own use within your class – declare it private unless there’s a good reason to expose it for client use.

继承

oop中经常出现的错误就是到处都是继承.

In java, no matter what code is being executed, the receiver object never forgets its class.

Student s; 这个声明的含义是什么 ?

s points to an object that responds to all the messages that Sutdents respond to

s points to a Student, or a subclass of Student

继承的语法与特点

subclass problems:

1. construct the part of the object that is inherited, using the superclass

在构造函数的第一行, 执行 super(arguments)

2. construct the part of the object due to the class itself.

在构造函数的第一行, 调用自己的另外一个构造函数

覆盖 即 重写

To override a method, a subclass just defines a method with exactly the same prototype – same name and arguments. With Java 5, you can provide an @Override annotation just before the method, and the compiler will check for you that it matches some superclass method.

断言方法

一般使用 is 或 has 开头的返回 boolean 的方法

IS-a : 子类是一个父类, has-a: 一个类中有另一个类作为此类的一部分

instance of : 一个 object 判断是否是一个类的实例, 例如: Student s = new Student(); s instanceof Student

Object class 提供哪些方法:

  • toString()
  • equals(Object other)
  • int hashCOde() allows an object to be a key in a HashMap, HashCode should be fast to compute. if a class does not implements hashCode() then it cannot be a key in a Hashmap

cs108 04 oop design

时间: 2024-09-29 15:44:53

cs108 04 oop design的相关文章

C#语言-04.OOP基础

a. OOP:面对对象思想 i. 类:是一种功能强大的数据类型,而且是面向对象的基础 1. 语法:访问修饰符 class 类名{ //类的主体 } 2. 成员变量:不以"函数"形式体现 a. 常量:代表与类相关的常量值 b. 变量:类中的变量 c. 事件:由类产生的通知,用于说明发生了什么事件 d. 类型:属于类的局部类型 3. 成员函数:以"函数"形式体现 a. 方法:完成类中各种计算或功能的操作,不能和类同名.不能和类中其他成员同名 b. 属性:定义类的值,并对

scala 学习笔记(04) OOP(上)

一.主从构造器 java中构造函数没有主.从之分,只有构造器重载,但在scala中,每个类都有一个主构造器,在定义class时,如果啥也没写,默认有一个xxx()的主构造器 class Person { var name: String = _ /** * 从构造器 * @param name */ def this(name: String) = { this //注意:从构造器,必须先调用主构造器 this.name = name; } override def toString = { "

scala 学习笔记(04) OOP(中)

一.trait 不仅仅只是接口! scala是一个非常有想法的语言,从接口的设计上就可以发现它的与众不同.scala中与java的接口最接近的概念是trait,见下面的代码: package yjmyzz object App { def main(args: Array[String]) { val bird = Bird("pigeon") bird.fly println(bird.isInstanceOf[Bird]) //true println(bird.isInstanc

好几年才收集到的软件,分享给大家。。。

QQ:365543212Email:[email protected]请按Clrt+F查找,输入软件关键字查询(不要输入版本号),如果找不到,您可以咨询客服.................FD......................12D MODEL 7.0 规划设计232Analyzer v4.1 高级串口分析监测3D Home Architect Design Suite Deluxe 8.0 室内装潢3D Profiler Tools 11.2 For Archicad 113D R

谷歌Web中文开发手册:1目的&目录

原文:https://developers.google.com/web/fundamentals/getting-started/your-first-multi-screen-site/ 你的第一个适应多屏幕的网站 现在有一系列的智能手机和大屏幕显示设备(甚至是电视),所以我们需要学习怎样开发一个可以在这些设备中都表现良好的网站. 多屏幕适应的开发经验并不是那么难.根据这个系列的教程,一起来做一个例子: https://www.udacity.com/course/cs256 CS256 M

设计模式SOLID - 里氏代换原则

Principles Rule!It's been a while since OOP/Design Pattern principles have been a topic on this blog, and now is as good time as any. The 1987 OOPSLA keynote address by Barbara Liskov contained what has become known as the Liskov Substitution Princip

How Scala killed the Strategy Pattern

How Scala killed the Strategy Pattern By Alvin Alexander. Last updated: Mar 23, 2014 table of contents [hide] The OOP Strategy Pattern Two immediate thoughts How Scala killed the Strategy Pattern Understanding the 'execute' method Dude, you used 'met

用Vivado写的verilog交通灯课程作业(一)

一.主模块 交通灯和七段计数 `timescale 1ns / 1ps ////////////////////////////////////////////////////////////////////////////////// // Company: // Engineer: // // Create Date: 2016/05/24 14:55:05 // Design Name: // Module Name: traffic // Project Name: // Target

谷歌Web中国开发手册:1目的&夹

原版的:https://developers.google.com/web/fundamentals/getting-started/your-first-multi-screen-site/ 该网站的第一个多屏幕适配 如今有一系列的智能手机和大屏幕显示设备(甚至是电视),所以我们须要学习如何开发一个能够在这些设备中都表现良好的站点. 多屏幕适应的开发经验并非那么难.依据这个系列的教程.一起来做一个样例: https://www.udacity.com/course/cs256 CS256 Mo