/
Code Documentation Code Documentation

Code Documentation - PowerPoint Presentation

calandra-battersby
calandra-battersby . @calandra-battersby
Follow
417 views
Uploaded On 2017-08-25

Code Documentation - PPT Presentation

Important Its for you Its for others The Function Description Describes what the function does for the user What resources are needed It should not need to state how this is done just ID: 581946

float function post pre function float pre post values swap rad screen cylinder vol cyl const void arguments volume output amp message

Share:

Link:

Embed:

Download Presentation from below link

Download Presentation The PPT/PDF document "Code Documentation" is the property of its rightful owner. Permission is granted to download and print the materials on this web site for personal, non-commercial use only, and to display it on your personal computer provided you do not modify the materials and that you retain all copyright notices contained in the materials. By downloading content from our website, you accept the terms of this agreement.


Presentation Transcript

Slide1

Code DocumentationSlide2

Important!

It’s for you

It’s for othersSlide3

The Function Description

Describes what the function does for the user

What resources are needed

It should not need to state

how

this is done, just

what

is doneSlide4

Function Side Effects

A side effect is anything that is a direct consequent of the execution of a function that is not a direct mapping of inputs to outputs (return values)Slide5

Pre and Post Conditions

Preconditions

Preconditions state what must be true of the inputs to the function before a function

is executed in order to guarantee the postconditions.

Postconditions

Postconditions state what will be true after successful execution of a function including all side

effects given that the preconditions are met.Slide6

Pre and Post Notes

You may think of pre- and

postconditions

as setting up a contract between you (the programmer) and the user of your function.

It is perfectly acceptable that there can be no preconditions on a function.Slide7

Pre and Post Notes

Preconditions should never contain obvious, irrelevant, or redundant statements.

Most often you will find that preconditions will be a statement of the range of values a parameter may take onSlide8

Pre and Post Notes

When stating postconditions, be sure to include all pertinent information.

Beware of reference parameters and other side effects.

Don’t state what is not a result of the function being executed.Slide9

Pre and Post Notes

I CANNOT imagine “none” being a valid

postcondition. If the function had no postcondition, then it’s pretty useless.

All these comments should be placed just before the prototype of the function in question.Slide10

Examples

// Description: The greetings() function will output a message to the

// screen greeting the user.

// Pre: None

// Post: Message output to the screen.

void greetings ();

// The

cyl_vol

() function will calculate and return the volume of the

// right circular cylinder with base radius

rad

and height ht.

// Pre: Both parameters,

rad

and ht, must be positive values.

// Post: Volume of cylinder is returned.

float

cyl_vol

(const float

rad

, const float ht);

// The swap() function will swap the values of the arguments sent to

// it.

// Pre: none

// Post: The values of the arguments sent will be swapped back in the

// calling function.

void swap (float & val1, float & val2); Slide11

Examples

// Description: The greetings() function will output a message to the

// screen greeting the user.

// Pre: None

// Post: Message output to the screen.

void greetings ();

// The

cyl_vol

() function will calculate and return the volume of the

// right circular cylinder with base radius

rad

and height ht.

// Pre: Both parameters,

rad

and ht, must be positive values.

// Post: Volume of cylinder is returned.

float

cyl_vol

(const float

rad

, const float ht);

// The swap() function will swap the values of the arguments sent to

// it.

// Pre: none

// Post: The values of the arguments sent will be swapped back in the

// calling function.

void swap (float & val1, float & val2); Slide12

Examples

// Description: The greetings() function will output a message to the

// screen greeting the user.

// Pre: None

// Post: Message output to the screen.

void greetings ();

// The

cyl_vol

() function will calculate and return the volume of the

// right circular cylinder with base radius

rad

and height ht.

// Pre: Both parameters,

rad

and ht, must be positive values.

// Post: Volume of cylinder is returned.

float

cyl_vol

(const float

rad

, const float ht);

// The swap() function will swap the values of the arguments sent to

// it.

// Pre: none

// Post: The values of the arguments sent will be swapped back in the

// calling function.

void swap (float & val1, float & val2); Slide13

Examples

// Description: The greetings() function will output a message to the

// screen greeting the user.

// Pre: None

// Post: Message output to the screen.

void greetings ();

// The

cyl_vol

() function will calculate and return the volume of the

// right circular cylinder with base radius

rad

and height ht.

// Pre: Both parameters,

rad

and ht, must be positive values.

// Post: Volume of cylinder is returned.

float

cyl_vol

(const float

rad

, const float ht);

// The swap() function will swap the values of the arguments sent to

// it.

// Pre: none

// Post: The values of the arguments sent will be swapped back in the

// calling function.

void swap (float & val1, float & val2); Slide14

End of Session