answersLogoWhite

0

The only disadvantage of OOP programming is its inability to represent non objects. For example: consider a program having just one member function which prints a statement. Creating of an object doesn't make much sense but still such a disadvantage can be overcome by marking it as static, thereby emphasizing the fact that the method isn't associated to an object.

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

What are the disadvantages and disadvantages of object oriented DBMS?

#


Advantages and disadvantages of object oriented databases?

advantages of object oriented data base


Is c is complete object oriented programming language?

No. C is not object oriented. C++ is object oriented.


What are the disadvantages of object oriented programming over structured programming?

actually oop concept have some disadvantage when compared to structured programming


What is the distinct difference between object oriented concept and object oriented programming?

Object oriented concepts are a generalisation of the object oriented principals (encapsulation, inheritance, polymorphism and abstraction) without specifying a particular implementation of those principals. Object oriented programming is the application of those principals through an object oriented programming language.


What is Object Oriented System Development?

What is object-oriented systems development


What object oriented system development?

What is object-oriented systems development


Is c plus plus is pure object oriented?

No. C is not object-oriented, it is a procedural language.C++, while object-oriented, is not purelyobject-oriented. One of the requirements for a pure object-oriented language is that everything is an object. C++ still has primitive data types (int, long, double, etc.), and so is not purely object-oriented.


What are advantages and disadvantages of oop 'object oriented programming?

The advantages are Data Encapsulation Data Hiding Easy to maintain the code Reuseability of classes And disadvantages are wastage of time in case of small projects or codes


What are the impact of object oriented on software industry?

what are the impact object oriented on software industry


Brief description of object oriented life cycle?

object oriented life cycle


Disadvantages of procedural code over an object-oriented one?

A procedural code is * less maintainable * polluting the namespace of variables and methods * making harder to decouple and modularize the code, as such, it is less reusable than an object-oriented one