+ 21
Object Oriented Programming
Hello guys ! Like last year, I finally started learning Object Oriented Programming in Java. (Objects, Constructors and other stuff)... Though I'm pretty much understanding all the concepts, it would really help if I'm ahead of my class syllabus as it helps a lot later, so I would love it if you all could suggest me some online resources for that learning that ) I am learning it through Java but almost any other language could be good as well. Thanks guys !
20 Respostas
+ 16
bro , for school syllabus follow your "Sumita Arora" + for programming in java especially as a beginner and learn concepts fast U can follow YT videos of telusko learning(keeping in mind the accent of that sir there , not advance type) & then the links provided by Faisal Danijel Ivanović
+ 10
You are welcome my friend!👍😉
HappyLearning!;) 💪😆🍻
+ 8
Thanks Gaurav Agrawal too 😁😁 I will surely follow your advice😊
+ 8
A resource that really helped me understand OOP in Python: https://www.python-course.eu/python3_object_oriented_programming.php
+ 6
Thinking in java by bruce eckel great book
+ 6
+ 5
Here's a ton of Java resources that may be helpful - https://www.sololearn.com/Discuss/636195/?ref=app
https://www.sololearn.com/Discuss/580291/?ref=app
+ 2
+ 2
Yakov Fain - Java Programming 24-Hour Trainer (2nd edition) also good thing :)
+ 2
Thanks kiibo Ghayal
+ 1
You can find good stuff about java OOP or other stuff about it in https://www.tutorialspoint.com
Also it has a lot of things to learn, machine learning, IoT, Python and etc. Check it out. It is free.
+ 1
https://www.google.com.mx/url?sa=t&source=web&rct=j&url=%23&ved=2ahUKEwiHo9qC1r7eAhVJMqwKHYcTCugQwqsBMAB6BAgIEAU&usg=AOvVaw0VTJzWxrN8ZFOD4xbU2nov
+ 1
Es en español el mejor que he visto!
+ 1
Follow websites of CS DOJO
+ 1
I think javatpoint.com has a good java tutorial. It will really help you. The beauty is, you learn while you build apps.
0
hi
0
OOPs, or Object-Oriented Programming is a programming model or paradigm which
revolves around the concept of “OBJECTS”. Objects can be considered as real-world
instances of entities like class, that contain some characteristics and behaviors
specified in the class template.
In simple language, a class can be considered as the blueprint or template, based on
which objects can be created. So the Objects are considered the instance of a class,
and are therefore sometimes called “instances”. The term “characteristics” refers to
the “what” about the Object, and the term “behavior” refers to the “how” about the
Object.
For example, if we consider a car, then based on the OOPs model:
Class = A specific car model, such as Audi A4, BMW I8, Maruti Suzuki Vitara
Brezza, etc.
Object = A specific car of any model, like the car you own
Characteristics = What is the color of your car? What is the Chassis number of
your car? etc
Behavior = How to start the car? How to change the gear of the car? etc.