Don't miss an insight. Subscribe to Techopedia for free.

Subscribe
Advertisements

Object-Oriented Language

What Does Object-Oriented Language Mean?

Object-oriented language (OOL) is a high-level computer programming language that implements objects and their associated procedures within the programming context to create software programs.

Advertisements

Object-oriented language uses an object-oriented programming technique that binds related data and functions into an object and encourages reuse of these objects within the same and other programs.

Techopedia Explains Object-Oriented Language

Object-oriented language was primarily designed to reduce complexity in typical procedural languages through data binding and encapsulation techniques. In object-oriented language, the objects created provide limited or no access to other functions or methods within the program. This enables only authorized or inherited methods/functions to access a particular object.

Object-oriented language typically supports the following features, at minimum:

  • The ability to create classes and their associated objects
  • Encapsulation
  • Inheritance

Java, C++ and Smalltalk are popular examples of object-oriented languages.

Advertisements

Related Terms