1 / 8

Subprograms

Learn about the benefits of using subprograms and procedures in programming, including improved code reusability, better organization, and avoiding side effects. Explore the differences between global and local variables and understand the importance of careful variable declaration.

cathye
Télécharger la présentation

Subprograms

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Subprograms • A subprogram is a part of the program that has all the elements of the program itself. • Subprograms facilitate the translation of the top-down algorithm to the final program because they allow us to concentrate on one task at a time. • Subprograms are “called” or “activated” from the “Main Program”

  2. Subprograms: Procedures • For now we will look at a type of subprogram called a procedure. • A Pascal procedure is similar in construction to a program. It can contain its own VAR declaration and/or CONST definition, and it contains its own statement part which begins with BEGIN and ends with END

  3. Procedures (con’t) • Differences between the construction of a program and a procedure: • The reserved word PROCEDURE replaces the reserved word PROGRAM. • The final END is followed by a semicolon instead of a period.

  4. Advantages of using procedures • If you want to perform a task more than once in a program, you just reference the procedure each time. This avoids repeating the same code. • The main program can be written as a sequence of tasks which makes it easier for humans to understand.

  5. Global vs. Local variables • Global identifiers are declared in the main program. These variables can be used in the main program as well as in the procedures that are called from the main program. • Local identifiers are declared in the procedures. These variables can only be used by the procedure in which they are declared.

  6. It is not a good idea to use global variables in your procedures Doing so can cause side effects. A side effect occurs when you unintentionally assign a new value to a global variable within a procedure. When you return to the main program and use that variable, you will get an unexpected result.

  7. What if we declare the same identifier in both the main program and one of its procedures? • The compiler will establish two different memory locations for the variables. It is as if they had different identifiers. • One location is available in the main program. • The other is available only in the procedure. ie. It takes precedence inside the procedure.

  8. Homework #5 • Due November 2, 1999 • It is homework #4 on Marateck’s homepage:http://cs.nyu.edu/courses/fall97/A22.0002/hw4.html

More Related