Possible Duplicates:
What does OOP mean
What's the point of OOP?
i am a new guy to programming word and i can’t understand what is oop.
why we need oop ? we can write programmes without OOP
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
OOP is useful in the same way structured programming is useful. You don’t need to use functions since you can write a program using just
gotostatements to jump around but that makes the code hard to maintain and think about. Similarly, OOP combines functions and variables into objects which allows you to break up your code further and with the added abstraction, you can more easily think about the code and write it in a way that’s easier to maintain.