Download presentation
Presentation is loading. Please wait.
Published byMartha McCarthy Modified over 8 years ago
1
Introduction to C++
2
Introducing C++ C++ Structure Primitive Data Types I/O Casting Strings Control Flow
3
Objective At the end of this lesson, students should be able to write simple C++ programs using the standard I/O library, the String class, and primitive data types.
4
Introduction In CS1410 we will study the C++ programming language. We do this for a number of reasons (1) We want our students to know at least 2 languages (2) C++ exposes some important ideas, like pointers, that are hidden from the programmer in other languages (3) Seeing the basic principles of programming used in a 2 nd language will significantly increase you programming skills
5
Starting Point We will start out assuming that you know C# because that is what we teach in CS 1400. If you learned another language in your CS 1400 class, don’t worry. You’ll catch on.
6
Review: A Simple C# Program using System; class Program { // a constant const int SIZE = 5; static void Main( ) { // a local variable double average =32.5; // arithmetic double newValue = average * SIZE; Console.WriteLine("The average value is {0}", average); Console.ReadLine(); }
7
Let’s Convert it to C++ using System; class Program { // a constant const int SIZE = 5; static void Main( ) { // a local variable double average =32.5; // arithmetic double newValue = average * SIZE; Console.WriteLine("The average value is {0}", average); Console.ReadLine(); }
8
Let’s Convert it to C++ using System; class Program { // a constant const int SIZE = 5; static void Main( ) { // a local variable double average =32.5; // arithmetic double newValue = average * SIZE; Console.WriteLine("The average value is {0}", average); Console.ReadLine(); } C++ is not a pure object oriented language, so all code does not need to be enclosed inside of a class.
9
Let’s Convert it to C++ using System; // a constant const int SIZE = 5; static void Main( ) { // a local variable double average =32.5; // arithmetic double newValue = average * SIZE; Console.WriteLine("The average value is {0}", average); Console.ReadLine(); } Main does not have to be static. in C++ it normally returns an int, and it spelled main (no capital M). Main( ) always returns an integer. int main( ) return 0;
10
Let’s Convert it to C++ using System; // a constant const int SIZE = 5; int main( ) { // a local variable double average =32.5; // arithmetic double newValue = average * SIZE; Console.WriteLine("The average value is {0}", average); Console.ReadLine(); return 0; } The syntax of basic declarations, arithmetic, and control statements are the same as in C#
11
Let’s Convert it to C++ using System; // a constant const int SIZE = 5; int main( ) { // a local variable double average =32.5; // arithmetic double newValue = average * SIZE; Console.WriteLine("The average value is {0}", average); Console.ReadLine(); return 0; } C++ I/O is much different from C# (we’ll discuss the details later) cout << “The average value is “ << average << endl;
12
Let’s Convert it to C++ using System; // a constant const int SIZE = 5; int main( ) { // a local variable double average =32.5; // arithmetic double newValue = average * SIZE; Console.ReadLine(); return 0; } To keep the console window open, we’ll use a system call cout << “The average value is “ << average << endl; system(“PAUSE”);
13
Let’s Convert it to C++ using System; // a constant const int SIZE = 5; int main( ) { // a local variable double average =32.5; // arithmetic double newValue = average * SIZE; system(“PAUSE”); return 0; } Namespaces are declared differently in C++. Everything we will use is in the standard (std) namespace. cout << “The average value is “ << average << endl; using namespace std;
14
Let’s Convert it to C++ using namespace std; // a constant const int SIZE = 5; int main( ) { // a local variable double average =32.5; // arithmetic double newValue = average * SIZE; system(“PAUSE”); return 0; } Finally, we need to add a new pre-processor directive, that includes header files that are required for our program to compile correctly. The iostream header file is required when doing console I/O. cout << “The average value is “ << average << endl; #include
15
Here’s the Final C++ Program using namespace std; // a constant const int SIZE = 5; int main( ) { // a local variable double average =32.5; // arithmetic double newValue = average * SIZE; system(“PAUSE”); return 0; } cout << “The average value is “ << average << endl; #include
16
Header Files In a C++ program every.cpp file in the project is compiled on its own to produce an object file. Once all of the object files have been produced, they are linked together to create an executable (.exe) file. This means that one.cpp file has no clue of what is defined in the other.cpp files in the program. So, how do the various bits and pieces of a program created from multiple.cpp files communicate with each other?
17
Header Files Header files provide a way for you to advertise the constants and function interfaces in your code, so that others can link to your code without having to know the details of the implementation.
18
Example In the program we just developed, we have this statement: cout << “The average value is “ << average << endl; The name cout refers to an object of the ostream class. The compiler find out how the cout object works by looking at the header file. To tell the compiler to look there we write #include
19
In this course, you should provide a header file for every.cpp file that you create. In the example we have been working on, there is only the.cpp file that contains main(). The companion header file for this file should contain Any #includes required by main( ) Any constants used by main( ) The function prologues and function prototypes for any stand-alone functions that reside in this file.
20
A Good C++ Code Skeleton // file prologue #include “driver.h” int main( ) { // declare local variable variables here // C++ statements system(“PAUSE”); return 0; } // file prologue #include using namespace std; // constant declarations // prologues and prototypes // for stand alone functions driver.cpp driver.h
21
Primitive Data Types C++ has fewer primitive data types than does C#, but the primary ones that we will use are exactly the same … int, double, bool, and char. There is a major difference between C++ data types and C# data types. In C++, the size of a data type is determined by the underlying hardware, it is not defined by the language.
22
Assignment and Arithmetic work just as they do in C#.
23
C++ Input and Output In place of C#s Console class, we need two C++ Objects to do console input and output
24
cin cin is an object of the istream class. To use cin, you must #include iostream in your program. This object represents the standard input stream. The cin object is created automatically for you. keyboard buffer cin program keyboard buffer
25
cout is an object of the ostream class. This object represents the standard output stream. It is also created automatically for you. output buffer cout program cout display buffer
26
The Stream Insertion Operator, << a binary operator (it takes two operands) the left hand operand must be an output stream the right hand operand –is converted into text –the text data is then copied into the stream
27
display buffer int a = 5; a 0000 0000 0000 0101 the integer 5 0000 0000 0011 0101 the character 5 cout cout << a; 5
28
multiple pieces of data are output by cascading the << operator … cout << “The answer is “ << a;
29
If you want data to appear on a new line, you must explicitly add the newline character to the output stream. There is no WriteLine operation. Special characters are added to the stream using the escape character \ \t \n etc … cout << “The answer is “ << a << ‘\n’;
30
the endl stream manipulator can be added to the output stream. It does two things: It adds a new line to the stream. It forces the buffer to be output cout << “Hello” << endl;
31
Formatting Numbers Output formatting in C++ is quite different from C#’s output formatting.
32
To display a double or a float in standard decimal notation cout.setf(ios::fixed); setf( ) is a function in the cout object. It is responsible for setting formatting flags. We will study these in much more detail in a later section. In this case, we are setting the ios::fixed flag. This makes the output appear as a normal decimal number instead of in scientific notation. cout.setf(ios::showpoint); the ios::showpoint flag guarantees that a decimal point will be displayed in the output. cout.precision(2); the cout.precision( ) function determines how many digits will be displayed after the decimal point. The default formatting, is the “general” format. In this case precision defines the number of digits in total to be displayed
33
Example double price = 78.5; cout.setf(ios::fixed); cout.setf(ios::showpoint); cout.precison(2); cout << “The price is $” << price << endl;
34
The stream extraction operator, >> Also a binary operator The left operand must be an input stream Any initial white space is skipped, then the stream is read up to the next white space character ( tab, space, new-line ) If necessary, the text just read is converted to match the type of the right operand. An error occurs if the conversion cannot be done. The data is stored in the right operand
35
keyboard buffer cin int a; cin >> a; a 0000 0000 0011 0101 the character 5 0000 0000 0000 0101 5 72 hello reading stops when white space is encountered
36
In C#, we always read a string from the Console, and then used a Parse method to convert the string to the desired data type. In C++, this conversion happens automatically. However, no exception occurs if the conversion cannot be done.
37
Failed Input Consider the following: A program contains the statements int number = 0; cin >> number What happens if the user types the letter “t”?
38
The stream extraction operator is not able to convert the letter “t” into a proper integer value. Three important things happen, without warning: 1.No input occurs, so the variable number contains whatever value it had previously. 2. The letter “t” remains in the input buffer, so a subsequent read operation will try to read it again. 3. The object cin sets itself to a “failed” state, and subsequent input operations will all fail.
39
Handling Failed Input As noted, if input fails, no data is input. We can detect when this happens by testing the state of the input stream object. if (cin.fail( ) ) { cout << “Invalid input occurred”;... }
40
There is a well known idiom in C++ that makes handling failed input much easier. The expression cin >> number; has a value, which is the value of the cin object itself. if the value of cin is “good”, we can go ahead and process the data. The statement to do this looks like if (cin >> number) { // process the input }
41
Recall that once the stream object fails, all subsequent read operations will fail. How do we fix that? The stream objects have a member function named clear( ), that resets the failed state back to good. cin.clear( );
42
Using the Stream State to Control a Loop cout << “\nEnter an integer value (or ‘q’ to quit): “; while (cin >> number) { // process the data } cin.clear( ); // clear the fail state string dummyValue; // get the ‘q’ out of the buffer cin >> dummyValue;... This code will process user input until a non-integer value is typed:
43
you can also cascade the stream extraction operator : cin >> a >> b;
44
You can control the size of an input field with the setw( n ) stream manipulator. cin >> setw(5) >> title; But … keep in mind that this can leave data in the buffer.
45
cin.get The get function of the istream class works similar to the stream extraction operator. With no parameter, it gets one character from the input stream. cin.get( );
46
cin.ignore( ) This function reads in a character and ignores it. The character read in is discarded. cin.ignore( );
47
This version of the function reads in n characters and ignores them. cin.ignore(n); This version of the function reads in n characters or until it encounters the delimiter character, and ignores the characters read. cin.ignore(n, ‘\n’);
48
Why is ignore useful? Try the following code… int numItems; string description; cout << “\nenter the number of items and description: “; cin >> numItems; getline(cin, description); When prompted, enter the data on two lines.
49
Suppose that the user enter 5 for the number of items. The contents of the stream object cin look like this: 5nl The steam object contains a pointer that always points to the next character to read. At this stage it is pointing to the 5. The newline character was put into the stream when the user pressed the Enter key.
50
When this statement is executed cin >> numItems; 5nl The character 5 is read from the stream, converted into the integer 5, and stored in the variable numItems. The pointer into the stream now points to the new line character.
51
Now the user enters A p p l e s and presses the Enter key. The stream looks like this: 5nlA p p l e s nl
52
Now the program executes this statement: getline(cin, description); 5nl The getline command reads data until it encounters a new line character. The characters it reads are stored in the string variable description. The new line character is discarded. A p p l e s nl
53
5nl The getline command found the newline character and quit. Nothing gets stored in the variable description. The characters A p p l e remain in the stream. A p p l e s nl
54
int numItems; string description; cout << “\nenter the number of items and description: “; cin >> numItems; cin.ignore( ); // gets rid of the newline character getline(cin, description); When prompted, enter the data on two lines. The Solution
55
5nl The cin.ignore( ) command moves the stream pointer over 1 character, so the newline character is ignored. It now points to the A. A p p l e s nl
56
Now the program executes this statement: getline(cin, description); 5nl The getline command reads data until it encounters a new line character. The characters A p p l e s are reads from the Stream and stored in the string variable description. The new line character is discarded. A p p l e s nl
57
In C++, you can use the same style of cast as you did in C#, but the preferred way to cast in C++ is to write, for example Casting int number = static_cast (myDoubleValue);
58
Strings C++ has a string class what is similar to C#’s string class.
59
Declaring a String (you must #include ) string myName; string myName = “Prof. deBry”;
60
Reading a line into a string This function is similar to cin.get( )except that it reads an entire line of data, including spaces, and the data is stored in a string object. This is the preferred way of reading in a line of data. It is equivalent to C#’s ReadLine method. getline(cin, stringName);
61
Additional Notes on the String Class Use + to concatenate two strings Use the member function size( ) to get the length of a string The [ ] operator can be used to access or modify individual characters of a string. No bounds checking is performed. The c_str( ) member function returns a char* based string.
62
The C11 Numeric Conversion Functions The C++11 standard contains new functions to convert the contents of a string into a numeric value. These are similar to C#’s Parse methods. stoi – converts a string to an int stod– converts a string to a double + 6 more for the other C++ numeric data types
63
The C11 Numeric Conversion Functions These functions attempt to convert the first part of a string into a numeric value. If a conversion cannot be performed, an invalid_argument exception is thrown.
64
Use getline and the numeric conversion functions in the string class to avoid the problems with cin.
65
int numItems; string description; string inputValue; cout << “\nenter the number of items and description: “; getline(cin inputValue); // get the user input in the string numItems = stoi(inputValue). // convert it to an integer getline(cin, description); Alternate Solution This is similar to the way you read an integer in C#.
66
C++ Control Flow With a few minor exceptions, the statements that control flow through a C++ program look and work the same as they do in C#
67
Switch In C#, each case must contain a break statement. It is illegal to drop through from one case to the next.
68
switch (num) { case 1: a = a + 5; b = b + 3; case 2: a = a + 6; b = b + 4; case 3: a = a – 7; b = b – 1; } if num = 3, only this code executes if num = 2, then this code executes if num =1, then this code executes This is valid code in C++
69
There is no foreach statement in C++ Instead, C++ uses a range based for. It looks like this: int a[ ] = {1, 2, 3}; for(int n : x) { cout << n << endl; }
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.