oop-examples/README.md

28 lines
624 B
Markdown
Raw Normal View History

2020-03-28 19:49:57 +01:00
# Object Oriented Programming
A short introduction to object oriented programming with examples in multiple languages
Example Languages:
- Java
- Rust
- C++
- JavaScript (using TypeScript)
Lessons:
- [instanciating objects, accessing attributes and methods](./lessons/Instances.md)
2020-04-03 10:47:05 +02:00
- [creating a class](./lessons/Classes.md)
2020-05-10 16:07:27 +02:00
- [constructors](./lessons/Constructors.md)
2020-05-23 19:34:38 +02:00
- [encapsulation](./lessons/Encapsulation.md)
2020-05-24 17:39:59 +02:00
- [inheritance](./lessons/Inheritance.md)
- [properties](./lessons/Properties.md) -
- [polymorphism](./lessons/Polymorphism.md) -
2020-03-28 19:49:57 +01:00
Work in progress:
- virtual classes
- interfaces
2020-05-10 16:07:27 +02:00
- Factories
2020-05-24 17:04:37 +02:00
- Generics