Skip to content

Instantly share code, notes, and snippets.

@VVCepheiA
Last active August 29, 2015 14:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save VVCepheiA/bca5506396d67c6246af to your computer and use it in GitHub Desktop.
Save VVCepheiA/bca5506396d67c6246af to your computer and use it in GitHub Desktop.
CS247 Course Notes

#CS247

Objective of OOD/OOP

  • abstraction
    • interface
    • data abstraction/ADT
  • reuse
    • inheritance
    • conposition
    • as is (in client code)
  • modularity/ separation of concerns
  • immutability (keep developers from changing your code)
  • information hiding/encapsolation
    • encapsulate design decision that may change
  • Polymorphism
    • code that works with lots of data types
      • functions
      • templates
      • typehierarchy
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment