1. Trang chủ
  2. » Công Nghệ Thông Tin

programming and problem solving with c++ 6th by dale ch08

57 205 0

Đang tải... (xem toàn văn)

Tài liệu hạn chế xem trước, để xem đầy đủ mời bạn chọn Tải xuống

THÔNG TIN TÀI LIỆU

Chapter Functions Chapter Topics    Writing a Program Using Functional Decomposition Writing a Void Function for a Task Using Function Arguments and Parameters Chapter Topics    Differences between Value Parameters and Reference Parameters Using Local Variables in a Function Function Preconditions and Postconditions Functions  Every C++ program must have a function called main    Program execution always begins with function main  Any other functions are subprograms that must be explicitly called Function Calls One function calls another by using the name of the called function followed by ()s that enclose an argument list, which may be empty A function call temporarily transfers control from the calling function to the called function Function Call Syntax FunctionName( Argument List )  The argument list is a way for functions to communicate with each other by passing information  The argument list can contain 0, 1, or more arguments, separated by commas, depending on the function Two Parts of Function Definition int  Cube(int  n) { heading     return  n * n * n;     body } What is in a heading? type of value returned name of function int Cube (int n) parameter list Prototypes A prototype looks like a heading but must end with a semicolon, and its parameter list needs only to contain the type of each parameter int  Cube(int );  // Prototype Function Calls When a function is called, temporary memory is allocated for:  its value parameters;  any local variables; and  for the function’s name if the return type is not void Flow of control then passes to the first statement in the function’s body Pass-by-reference OR argument has no value yet when call occurs CALLING BLOCK FUNCTION CALLED “outgoing” new value of argument Data Flow Determines Passing-Mechanism Parameter Data Flow Passing-Mechanism Incoming /* in */ Pass-by-value Outgoing /* out */ Pass-by-reference Incoming/outgoing /* inout */ Pass-by-reference Questions Why is a function used for a task? To cut down on the amount of detail in your main program (encapsulation)  Can one function call another function? Yes  Can a function even call itself? Yes, that is called recursion; it is very useful and requires special care in writing  More Questions Does it make any difference what names you use for parameters? No; just use them in function body  Do parameter names and argument names have to be the same? No  Functions are written to specifications       The specifications state: the return type; the parameter types; whether any parameters are “outgoing” and what task the function is to perform with its parameters The advantage is that teamwork can occur without knowing what the argument identifiers (names) will be Write prototype and function definition for  A void function called GetRating() with one reference parameter of type char  The function repeatedly prompts the user to enter a character at the keyboard until one of these has been entered: E, G, A, P to represent Excellent, Good, Average, Poor void GetRating(char&);   // Prototype void GetRating(char&   letter) {     cout 

Ngày đăng: 06/02/2018, 10:07

Xem thêm:

TỪ KHÓA LIÊN QUAN

Mục lục

    Two Parts of Function Definition

    What is in a heading?

    Void Functions Stand Alone

    Use of Reference Parameters

    Using a Reference Parameter

    Data Flow Determines Passing-Mechanism

    Functions are written to specifications

    Write prototype and function definition for

    void GetRating(char&); // Prototype

    Function with Postconditions, continued

TÀI LIỆU CÙNG NGƯỜI DÙNG

  • Đang cập nhật ...

TÀI LIỆU LIÊN QUAN