Object-Oriented Programming Term Paper

Object Oriented Programming The programming language that is organized around data rather than actions, and objects instead of actions is referred to as object oriented programming Mitchell, 2003.

A program has always been viewed as a logical procedure which accepts input data, processes the data, and produces some output. Object oriented programming was developed out of the need to write the logic instead of how to define the data. In object oriented programming the objects that the programmer wants to manipulate take center stage and not the required logic of manipulating the objects. An object is defined as a composition of nouns like strings, variables or numbers and verbs like functions. A program that is object oriented is a collection of objects that are interacting. A conventional program model was viewed as a list of tasks that the program was required to perform. Each of the objects used in OOP has the capability to process, receive and send messages to the other objects. The objects used in OOP are all viewed as independent and with distinct roles.

The popularity of OOP was mainly because of its simplicity in writing code, and it is easy for programmers to understand. Its adoption by many software development companies was because of its power and simplicity. Using abstraction, encapsulation, and polymorphism has helped programmers in managing their code and reducing program complexity. Data modeling is the first step in OOP. This stage allows the programmer to define and identify the objects that they want to manipulate and the way the objects will relate with each other.

Encapsulation

Encapsulation is defined as the placing of data and its operands in the same class. Encapsulation allows the programmer to hide information from other people Bruce, 2002.

This usually occurs by using the word "private" before the component. This way the programmer will be able to prevent other people from changing his implementations behavior. The concept of placing the private keyword is used for classes like link list, heap, and array. In many scenarios, people do not need to know how the classes are implemented, but they have to be included in the program. Using encapsulation more details can be added to the code and the additions will not affect the private classes/sections of the code. Using encapsulation an object's internal representation is hidden from view by the objects outside its definition. Therefore, it is the object's own methods that can manipulate or directly inspect its fields. Encapsulation has the benefit of reducing a program's complexity and increases its robustness, which allows the developer to limit the interdependencies of the software components.

Inheritance

Inheritance is a concept of OOP where a new class uses the implementation of another already defined class. Inheritance allows the reuse of existing code without the need for modification, but a little modification can be performed Craig, 2007.

Inheritance can also be defined as a way of establishing relationships between objects. In a situation where objects are defined by classes, the classes can inherit behavior and attributes from existing classes, which are referred to as parent classes or base classes. The classes resulting from inheritance are referred to as subclasses or child classes. Inheritance is used to show hierarchy between classes. Using inheritance a programmer is able to reduce the amount of code used as there will not be any replication required. Inheritance will allow for code reusability.

Polymorphism

Polymorphism is the ability to create a function, object, or variable that has many forms. This is the ability of substituting a class for another. Using polymorphism different classes can have the same method name, but they will all return different results because they all have different codes in their methods. Without having to understand the object type polymorphism is a great way of communicating between objects.

Procedural programming vs. Object oriented programming

Procedural programming focuses mainly on the actions or procedures that will take place within the program. A procedure call is one of the concepts in procedural programming. A procedure normally contains some list of instructions that will be carried out by the program. The procedure can be called by the program at any time by another procedure. Examples of procedural languages are Pascal and C. OOP focuses on solving the problem in terms of real-world elements. It also represents the problem as objects and object behavior. An object is a data structure that contains methods and data fields, which represent behaviors of real-world objects and attributes. Examples of OOP languages are C# and Java. These programs can also be used in procedural programming.

...

These procedures are code collections that are run in a specified order. OOP is quite like the real-world. Objects are not able to access directly the other object's data, but they have to request for data to be sent to them. This is similar to human beings requesting for information from other humans. Procedural programming breaks down the task of programming into subroutines and variables, while OOP breaks down the task into objects that encapsulate methods and data. A step-by-step program is created in procedural programming, which will guide the application in a sequence of instructions. In procedural programming, the programmer has access to all the data and functions that are executed. The programmer is also able to modify these data and functions.
Advantages of object oriented programming

OOP offers an improved productivity in software development. Object oriented programming allows for the separation of tasks between different people or teams. This is referred to as modular programming Marrer ()

. Objects can be extended, which allows for the inclusion of new behaviors and attributes. Objects created are easily reused across the application. This reduces the number of code used in the program and also reduces the errors. Code reusability also speeds up the program development as less time is spent rewriting the same code. Since it uses these three approaches modularity, reusability, and extensibility, OOP provides for improved productivity in software development over the traditional forms of programming.

OOP has improved software maintainability. Software developed using OOP is easier to maintain mainly due to the following reasons modularity, reusability, and extensibility. Any part of the program can be updated without the need of large-scale changes. This allows for any issues to be sorted out easily and without affecting the whole program. This is because the design is modular. OOP also offers a faster development of programs. Using its rich objects libraries, and code developed in other projects, a programmer is able to reuse the objects and code for future projects. This save the programmer time and allows them to make use of what they had developed before. Code developed by other programmers can also be reused easily as OOP simplifies the code and makes it easy for others to understand.

The cost of development is lowered as OOP allows for the reuse of software. Reusing software reduces the overall cost of developing a program as old programs that had been tested and approved can be reused for new projects. This way more effort will be placed on object oriented design and analysis instead of other features. OOP requires programmers to undergo an extensive planning phase, which ensures that the program design is flawless. This delivers better program designs. As a program becomes large, it is quite easy to program OOP than traditional forms of programming.OOP provides and delivers a higher software quality. Since less time is spent developing the program, more resources can be allocated to program testing and verification, which ensures that the program meets the expected standards. In other programming languages, the quality of the program is directly dependent on the teams' experience, but using OOP quality can be guaranteed without using experienced programmers.

Disadvantages of object oriented programming

OOP has a steep learning curve. The techniques used in OOP like polymorphism and inheritance can be quite difficult to comprehend initially. This would create challenges for programmers who are not used to OOP. OOP requires some specific thought process, which may not be natural to all programmers. This will result in them taking longer in getting used to OOP. It is also quite complex to develop programs based on object interactions. Object oriented programs normally have more lines of code than traditional forms of programming. This means that programmers will have to write more lines of code even if they have the capability of reusing some of the code. An increase in the number of code used leads to an increase in the rate of error. Therefore, OOP has the potential of generating more errors that the other forms of programming.

Programs developed using OOP are relatively slower than procedural programs, as they require the execution of more instructions. OOP uses code reuse and modular programming, this results in different classes been called, which increases the number of instructions executed. OOP is not suited to solving all types of problems. Some problems are better suited for traditional forms of programming. Therefore, using OOP is such situations would result in non-efficient programs.…

Sources Used in Documents:

References

Bruce, K.B. (2002). Foundations of Object-Oriented Languages: Types and Semantics. Cambridge, MA: Mit Press.

Craig, I. (2007). Object-Oriented Programming Languages: Interpretation. London WC1X 8HB: Springer.

Marrer, G. Fundamentals of Programming: With Object Orientated Programming. Glendale, Arizona: Gary Marrer.

Mitchell, J.C. (2003). Concepts in Programming Languages. Cambridge, MA: Cambridge University Press.


Cite this Document:

"Object-Oriented Programming" (2013, June 23) Retrieved April 24, 2024, from
https://www.paperdue.com/essay/object-oriented-programming-92406

"Object-Oriented Programming" 23 June 2013. Web.24 April. 2024. <
https://www.paperdue.com/essay/object-oriented-programming-92406>

"Object-Oriented Programming", 23 June 2013, Accessed.24 April. 2024,
https://www.paperdue.com/essay/object-oriented-programming-92406

Related Documents

Object Oriented Database and Languages Used in Object Oriented Database In this paper, we discuss the concept of object oriented databases and the languages using four different articles. We focus our discussion on the Object-Oriented design metrics for the purpose of optimizing code quality. These articles are papers/articles sourced from journals and recent conference papers. The articles we concentrate on are based on the languages Java, C ++, Python, Ruby and

This is one of the greatest limitations of this technology. A second major disadvantage of RDBMS-based systems is their lack of support for image- and spatial-based databases that include Computer-Aided Design (CAD) drawings, 3D rendering and model-based data. Their table-based structure is inefficient in defining the attributes of these data types and lacks the necessary data tagging and data types to manage imaging and CAD-based design files and data

Structured Design and Object-Oriented Design This report attempts to distinguish between two information technology design philosophies; namely, the basic differences between structured design and object-oriented design. The report also addresses the kinds of systems that are naturally more inclined to function with a hierarchy and those which function better through interacting objects. The report also goes on to discuss how systems were designed and when the methods used were most

Crimes in Prison Summary of "A Laboratory for Teaching Object-Oriented Thinking" "A Laboratory For Teaching Object-Oriented Thinking" describes a novel method for teaching programmers to think about programs in terms of objects instead of procedures in an attempt so solve the problem of programmers not adapting well to object-oriented programming. Programmers are introduced to the concepts of object-oriented programming without involving the specifics of any given language so that they can be

Object Oriented Hypermedia design model and the four-step process involved in the development of the model. This section will provide an explanation for each step in the process. Then we will discuss the past, present and future business uses of the model. This will explore the importance of the model in business applications that are conducted through the Internet. We will also provide details about the compatibility of the

When Web Services are created as part of a broader SOA initiative however, Chief Information officers (CIOs) and their staffs concentrate on setting a minimal level of performance for these specific aspects of AJAX performance. Conclusion There are also the issues of security (Chan, 2006) and the need for continually improving CSS performance and integration (Serrano, Aroztegi, 2007). The AJAX development language and its environments including Ruby on Rails (Bachle, Kirchberg,