Brief of Object Oriented Programming
Object Oriented Programming is a common way to think about software development.
OOP refers to a type of computer programming (software design) in which programmers define not only the data type of a data structure, but also the types of operation (functions) that can be applied to the data structure.
In other words, this data structure becomes an object that include both data and functions. In addition, programmers can create relationships between one object and another.
The postivie of using OOP:
- It makes thinking about building a large software application a lot easier.
- Software or code reuse.
In this course, we will make a simple game called MakersDefense. Only in logic way, not a graphic.