This Page Intentionally Left Blank
This Page Intentionally Left Blank
chapter 3
Using Functions and
Classes
This chapter describes how to
■ declare and call standard functions and
■ use standard classes.
This includes using standard header files. In addition, we will be working
with string variables, i.e. objects belonging to the standard class string
for the first time.
Functions and classes that you define on your own will not be
introduced until later in the book.
39
40 ■ CHAPTER 3 USING FUNCTIONS AND CLASSES
■ DECLARING FUNCTIONS
Function name
Types of arguments
Function type
= type of return value
䊐 Declarations
Each name (identifier) occurring in a program must be known to the compiler or it will
cause an error message. That means any names apart from keywords must be declared, i.e.
introduced to the compiler, before they are used.
Each time a variable or a function is defined it is also declared. But conversely, not
every declaration needs to be a definition. If you need to use a function that has already
been introduced in a library, you must declare the function but you do not need to rede-
fine it.
䊐 Declaring Functions
A function has a name and a type, much like a variable. The function’s type is defined by
its return value, that is, the value the function passes back to the program. In addition,
the type of arguments required by a function is important. When a function is declared,
the compiler must therefore be provided with information on
■ the name and type of the function and
■ the type of each argument.
This is also referred to as the function prototype.
This informs the compiler that the function toupper() is of type int, i.e. its return
value is of type int, and it expects an argument of type int. The second function
pow() is of type double and two arguments of type double must be passed to the
function when it is called. The types of the arguments may be followed by names, how-
ever, the names are viewed as a comment only.
From the compiler’s point of view, these prototypes are equivalent to the prototypes
in the previous example. Both junctions are standard junctions.
Standard function prototypes do not need to be declared, nor should they be, as they
have already been declared in standard header files. If the header file is included in the
program’s source code by means of the #include directive, the function can be used
immediately.
Following this directive, the mathematical standard functions, such as sin(), cos(),
and pow(), are available. Additional details on header files can be found later in this
chapter.
42 ■ CHAPTER 3 USING FUNCTIONS AND CLASSES
■ FUNCTION CALLS
Sample program
int main()
{
double x = 2.5, y;
return 0;
}
Screen output
2.5 raised to the power 3 yields: 15.625
2 + (5 raised to the power 2.5) yields: 57.9017
FUNCTION CALLS ■ 43
䊐 Function Calls
A function call is an expression of the same type as the function and whose value corre-
sponds to the return value. The return value is commonly passed to a suitable variable.
In this example the function pow()is first called using the arguments x and 3.0, and
the result, the power x3, is assigned to y.
As the function call represents a value, other operations are also possible. Thus, the
function pow() can be used to perform calculations for double values.
This expression first adds the number 2.0 to the return value of pow(5.0,x), then
outputs the result using cout.
Any expression can be passed to a function as an argument, such as a constant or an
arithmetical expression. However, it is important that the types of the arguments corre-
spond to those expected by the function.
The compiler refers to the prototype to check that the function has been called cor-
rectly. If the argument type does not match exactly to the type defined in the prototype,
the compiler performs type conversion, if possible.
The value 3 of type int is passed to the function as a second argument. But since the
function expects a double value, the compiler will perform type conversion from int
to double.
If a function is called with the wrong number of arguments, or if type conversion
proves impossible, the compiler generates an error message. This allows you to recognize
and correct errors caused by calling functions at the development stage instead of causing
runtime errors.
The compiler recognizes that the number of arguments is incorrect. In addition, the
compiler will issue a warning, since a double, i.e. the return value of pow(), is assigned
to a float type variable.
44 ■ CHAPTER 3 USING FUNCTIONS AND CLASSES
Sample program
cout << " --- Random Numbers --- \n" << endl;
cout << "To initialize the random number generator, "
<< "\n please enter an integer value: ";
cin >> seed; // Input an integer
return 0;
}
✓ NOTE
The statement cin >> seed; reads an integer from the keyboard, because seed is of the
unsigned int type.
The standard function srand() initializes an algorithm that generates random num-
bers. Since the function does not return a value, it is of type void. An unsigned value
is passed to the function as an argument to seed the random number generator. The
value is used to create a series of random numbers.
The standard function rand() is called without any arguments and returns a random
number between 0 and 32767. A series of random numbers can be generated by repeating
the function call.
srand(1);
If you want to avoid generating the same sequence of random numbers whenever the
program is executed, you must call srand() with a different value for the argument
whenever the program is run.
It is common to use the current time to initialize a random number generator. See
Chapter 6 for an example of this technique.
46 ■ CHAPTER 3 USING FUNCTIONS AND CLASSES
■ HEADER FILES
// Declaration // Declaration
// of cin, cout, // of self-defined
// . . . // functions
// and classes
long myfunc(int);
Source file
application.cpp
Copy
#include <iostream> Copy
#include "myheader.h"
int main()
{
int a;
. . .
cin >> a;
cout << myfunc (a);
. . .
return 0;
}
HEADER FILES ■ 47
■ header files should generally be included at the start of a program before any
other declarations
■ you can only name one header file per #include directive
■ the file name must be enclosed in angled brackets < ... > or double quotes
" ... ".
The compiler will then also search the current folder. The file suffix .h is normally used
for user-defined header files.
Following these directives, the classes istream and ostream can be used with the cin
and cout streams. cin is an object of the istream class and cout an object of the
ostream class.
48 ■ CHAPTER 3 USING FUNCTIONS AND CLASSES
✓ NOTE
Some IDE’s put the old-fashioned iostream.h and iomanip.h header files at your disposal. Within
these header files the identifiers of iostream and iomanip are not contained in the std namespace
but are declared globally.
The C++ standard library header files are shown opposite. They are not indicated by the
file extension .h and contain all the declarations in their own namespace, std. Name-
spaces will be introduced in a later chapter. For now, it is sufficient to know that identi-
fiers from other namespaces cannot be referred to directly. If you merely stipulate the
directive
the compiler would not be aware of the cin and cout streams. In order to use the iden-
tifiers of the std namespace globally, you must add a using directive.
You can then use cin and cout without any additional syntax. The header file
string has also been included. This makes the string class available and allows user-
friendly string manipulations in C++. The following pages contain further details on this
topic.
The string.h or cstring files must be included in programs that use standard func-
tions to manipulate C strings. These header files grant access to the functionality of the
C string library and are to be distinguished from the string header file that defines the
string class.
Each compiler offers additional header files for platform dependent functionalities.
These may be graphics libraries or database interfaces.
50 ■ CHAPTER 3 USING FUNCTIONS AND CLASSES
// To use strings.
int main()
{
// Defines four strings:
string prompt("What is your name: "),
name, // An empty
line( 40, '-'), // string with 40 '-'
total = "Hello "; // is possible!
✓ NOTE
Both the operators + and += for concatenation and the relational operators <, <=, >, >=, ==, and
!= are defined for objects of class string. Strings can be printed with cout and the operator <<.
The class string will be introduced in detail later on.
Several classes are defined in the C++ standard library. These include stream classes for
input and output, but also classes for representing strings or handling error conditions.
Each class is a type with certain properties and capacities. As previously mentioned,
the properties of a class are defined by its data members and the class’s capacities are
defined by its methods. Methods are functions that belong to a class and cooperate with
the members to perform certain operations. Methods are also referred to as member func-
tions.
䊐 Creating Objects
An object is a variable of a class type, also referred to as an instance of the class. When an
object is created, memory is allocated to the data members and initialized with suitable
values.
In this example the object s, an instance of the standard class string (or simply a
string), is defined and initialized with the string constant that follows. Objects of the
string class manage the memory space required for the string themselves.
In general, there are several ways of initializing an object of a class. A string can thus
be initialized with a certain number of identical characters, as the example on the oppo-
site page illustrates.
䊐 Calling Methods
All the methods defined as public within the corresponding class can be called for an
object. In contrast to calling a global function, a method is always called for one particular
object. The name of the object precedes the method and is separated from the method by
a period.
The method length() supplies the length of a string, i.e. the number of characters in a
string. This results in a value of 13 for the string s defined above.
The keyboard input is terminated by pressing the return key to create a new-line charac-
ter, '\n', which is not stored in the string.
52 ■ CHAPTER 3 USING FUNCTIONS AND CLASSES
■ EXERCISES
exercise s Screen output for exercise 1
4 2
12.25 3.5
0.0121 0.11
int main()
{
string message "\nLearn from your mistakes!";
cout << message << endl;
return 0;
}
EXERCISES ■ 53
Exercise 1
Create a program to calculate the square roots of the numbers
4 12.25 0.0121
and output them as shown opposite.Then read a number from the keyboard and
output the square root of this number.
To calculate the square root, use the function sqrt(), which is defined by the
following prototype in the math.h (or cmath ) header file:
Exercise 2
The program on the opposite page contains several errors! Correct the errors
and ensure that the program can be executed.
Exercise 3
Create a C++ program that defines a string containing the following character
sequence:
■ SOLUTIONS
solutions Exercise 1
// Compute square roots
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
double x1 = 4.0, x2 = 12.25, x3 = 0.0121;
return 0;
}
Exercise 2
// The corrected program:
int main()
{
string message = "\nLearn from your mistakes!";...// =
cout << message << endl;
SOLUTIONS ■ 55
Exercise 3
#include <iostream> // Declaration of cin, cout
#include <string> // Declaration of class string
using namespace std;
int main()
{
string message("I have learned something new again!\n"),
prompt("Please input two lines of text:"),
str1, str2, sum;
return 0;
}
This page intentionally left blank