From the course: Migrating COBOL Apps

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Observations on the paradigm shift

Observations on the paradigm shift - COBOL Tutorial

From the course: Migrating COBOL Apps

Start my 1-month free trial

Observations on the paradigm shift

- [Instructor] COBOL is a procedural language, conceived well before the object-oriented paradigm became popular. While the COBOL standard evolved to embrace object-orientation, COBOL programmers largely did not. The procedural paradigm is good for well controlled batch programs in which the programmer controls all the events that occur. There's no real time access and users are there only to generate input batches before the program runs and do something with the output after the program has run. If there is any user input, it happens when the program decides to ask for it. The object-oriented paradigm is a fundamentally different approach. Not just in the way code is written, but more importantly in the way code executes. Some applications require the ability to not control events but to respond to real time events. This occurs at the operating system level and in embedded processes, but more importantly for…

Contents