What Is a Function?

When people talk about C++, they mention objects first. Yet objects rely on functions to get their work done. A function is, in effect, a subprogram that can act on data and return a value. Every C++ program has at least one function—main(). When your program starts, main() is called automatically. main() might call other functions, some of which might call still others.

Each function has its own name, and when that name is encountered, the execution of the program branches to the body of that function. This process is known as calling the function. When the function completes all of its code, it returns, and execution resumes on the next line of the calling function. This flow is illustrated in Figure 7.1.

Figure 7.1. When a program calls a function, execution switches to the function and then resumes at the line after the function call.


A well-designed function will perform a specific task. That means it does one thing and then returns.

Complicated tasks should be broken down into multiple functions, and then each can be called in turn. This makes your code easier to understand and easier to maintain.

..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
18.117.246.159