2014년 1월 25일 토요일

Object-Oriented programming

    I was confused object-oriented programming with procedure programming, because both of them use functions and methods. However, my friend explained me with an example, and it made the concept of those two more clearer to me. what I understand about one of the benefits of object-oriented programming was ,unlike procedure programming, it can reduce the time and effort when a programmer tries to create multiple similar instances. Because, programmer can just use class, but if he tries to  do it in procedure way, he has to assigns every values to each attributes, and it would take much more time than just using classes.