What is key/topic of Structural language and OOP language?? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

What is key/topic of Structural language and OOP language??

what are the basic topic or idea of structural language such as c and object oriented language such c++, java etc?

16th Jan 2017, 4:57 AM
Mostasim Billah
Mostasim Billah - avatar
1 Answer
+ 2
The basic idea of OOP is that you can create Classes and Objects. A class is the code that defines how an object behaves. The object is the incarnation of the class at runtime (when the program is running). The reason this is useful is because you can define a class that does a task in a few lines of code and it will reuse the code over and over again. Whereas in other languages you would have to rewrite the code everytime the task needs doing. Which is bad because it makes the program longer than it needs to be and can cause problems.
16th Jan 2017, 3:14 PM
Sean Kudebeh
Sean Kudebeh - avatar