1 / 27

Ubuntu

Ubuntu. You will develop your course projects in C++ under Ubuntu Linux. If your home computer or laptop is running under Windows, an easy and painless way of installing Ubuntu is Wubi : http:// www.ubuntu.com/download/desktop/windows-installer

tannar
Télécharger la présentation

Ubuntu

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Ubuntu You will develop your course projects in C++ under Ubuntu Linux. If your home computer or laptop is running under Windows, an easy and painless way of installing Ubuntu is Wubi: http://www.ubuntu.com/download/desktop/windows-installer The Wubi installer will put the latest version of Ubuntu onto your computer. CS410 – Software Engineering Lecture #2: Hello, C++ World!

  2. Ubuntu Wubi does not require its own partition on your hard drive but simulates a file system within one large file. As a consequence, file operations are slightly less efficient than in an “actual” Ubuntu installation, but that difference does not matter for our purposes. When your computer starts, you will see a boot menu that allows you to choose between Windows and Ubuntu. Wubi can easily be uninstalled, in which case the boot menu will no longer show up. CS410 – Software Engineering Lecture #2: Hello, C++ World!

  3. Ubuntu Another possibility is to download a Ubuntu CD image (.iso file): http://www.ubuntu.com/download … and then run it as a virtual machine using the VMWare Player: http://www.vmware.com/products/player/ In either case, also download the g++ compiler from your Ubuntu terminal by typing: $ sudo apt-get install g++ CS410 – Software Engineering Lecture #2: Hello, C++ World!

  4. C++ Overview • History and major features of C++ • Input and output • Preprocessor directives • Comments CS410 – Software Engineering Lecture #2: Hello, C++ World!

  5. History of C++ • 1980: “C-with-classes” developed by Bjarne Stroustrup • 1983: C-with-classes redesigned and called C++ • 1985: C++ compilers made available • 1989: ANSI/ISO C++ standardization starts • 1998: ANSI/ISO C++ standard approved CS410 – Software Engineering Lecture #2: Hello, C++ World!

  6. Major Features of C++ • Almost upward compatible with C • Not all valid C programs are valid C++ programs. • Why? • Because of reserved words in C++ such as ‘class’ • Extends C with object-oriented features • Compile-time checking: strongly typed • Classes with multiple inheritance • No garbage collection, but semi-automatic storage reclamation CS410 – Software Engineering Lecture #2: Hello, C++ World!

  7. Sample C++ Program if (enteredPasswd == deptChairPasswd) { cout << "Thank you!" << endl; passwdOK = true; } else { cout << "Hey! Are you really " << deptChairName << "?\n"; cout << "Try again!\n"; passwdOK = false; } } while (!passwdOK && attempts < 3); if (passwdOK) SetNewParameters(); else { Shout(“Warning! Illegal access!”); CallCampusPolice(); } return 0; } • #include <iostream> • #include <string> • using namespace std; • int main() • { • string deptChairName, deptChairPasswd, enteredPasswd; • boolpasswdOK; • int attempts = 0; • deptChairName = GetDeptChairName(); • deptChairPasswd = GetDeptChairPasswd(); • cout << "How are you today, " << deptChairName << "?\n"; • do • { • cout << "Please enter your password: "; • cin >> enteredPasswd; • attempts++; CS410 – Software Engineering Lecture #2: Hello, C++ World!

  8. Input and Output • Some standard functions for input and output are provided by the iostream library. • The iostream library is part of the standard library. • Input from the terminal (standard input) is tied to the iostream object cin. • Output to the terminal (standard output) is tied to the iostream object cout. • Error and warning messages can be sent to the user via the iostream object cerr (standard error). CS410 – Software Engineering Lecture #2: Hello, C++ World!

  9. Input and Output • Use the output operator (<<) to direct a value to standard output. • Successive use of << allows concatenation. • Examples: • cout << “Hi there!\n”; • cout << “I have “ << 3 + 5 << “ classes today.”; • cout << “goodbye!” << endl; (new line & flush) CS410 – Software Engineering Lecture #2: Hello, C++ World!

  10. Input and Output • Use the input operator (>>) to read a value from standard input. • Standard input is read word by word (words are separated by spaces, tabs, or newlines). • Successive use of >> allows reading multiple words into separate variables. • Examples: • cin >> name; • cin >> nameA >> nameB; CS410 – Software Engineering Lecture #2: Hello, C++ World!

  11. Input and Output How can we read an unknown number of input values? int main() { string word; while (cin >> word)cout << “word read is: “ << word << “\n”; cout << “OK, that’s all.\n”; return 0;} CS410 – Software Engineering Lecture #2: Hello, C++ World!

  12. Input and Output The previous program will work well if we use a file instead of the console (keyboard) as standard input. In Linux, we can do this using the “<“ symbol. Let us say that we have created a text file “input.txt” (e.g., by using gedit) in the current directory. It contains the following text:“This is just a stupid test.” Let us further say that we stored our program in a file named “test.C” in the same directory. CS410 – Software Engineering Lecture #2: Hello, C++ World!

  13. Input and Output We can now compile our program using the g++ compiler into an executable file named “test”: $ g++ test.C –o test The generated code can be executed using the following command: $ ./test If we would like to use the content of our file “input.txt” as standard input for this program, we can type the following command: $ ./test < input.txt CS410 – Software Engineering Lecture #2: Hello, C++ World!

  14. Input and Output We will then see the following output in our terminal: Word read is: ThisWord read is: isWord read is: justWord read is: aWord read is: stupidWord read is: test.OK, that’s all. CS410 – Software Engineering Lecture #2: Hello, C++ World!

  15. Input and Output If we want to redirect the standard output to a file, say “output.txt”, we can use the “>” symbol: $ ./test < input.txt > output.txtWe can read the contents of the generated file by simply typing: $ less output.txt We will then see that the file contains the output that we previously saw printed in the terminal window. (By the way, press “Q” to get the prompt back.) CS410 – Software Engineering Lecture #2: Hello, C++ World!

  16. Input and Output If you use keyboard input for your program, it will never terminate but instead wait for additional input. Use the getline command to read an entire line from cin, and put it into a stringstream object that can be read word by word just like cin. Using stringstream objects requires the inclusion of the sstream header file: #include <sstream> CS410 – Software Engineering Lecture #2: Hello, C++ World!

  17. Input and Output #include <iostream>#include <sstream>#include <string>using namespace std; intmain(){ string userinput, word;getline(cin, userinput); stringstreammystream(userinput); while (mystream >> word) cout << "word read is: " << word << "\n"; cout << "OK, that’s all.\n"; return 0; } CS410 – Software Engineering Lecture #2: Hello, C++ World!

  18. Input and Output By the way, you are not limited to strings when using cin and cout, but you can use other types such as integers. However, if your program expects to read an integer and receives a string, the read operation will fail. If your program always uses file input and output, it is better to use fstream objects instead of cin and cout. CS410 – Software Engineering Lecture #2: Hello, C++ World!

  19. File Input and Output • if (!outfile) • { • cerr << “error: unable to open output file”; • return –2; • } • string word; • while (infile >> word) • outfile << word << “_”; • return 0; • } #include <iostream> #include <fstream> #include <string> using namespace std; int main() { ofstream outfile(“out_file.txt”); ifstream infile(“in_file.txt”); if (!infile) { cerr << “error: unable to open input file”; return –1; } CS410 – Software Engineering Lecture #2: Hello, C++ World!

  20. Preprocessor Directives Preprocessor directives are specified by placing a pound sign (#) in the very first column of a line in our program. For example, header files are made part of our program by the preprocessor include directive. The preprocessor replaces the #include directive with the contents of the named file. There are two possible forms: #include <standard_file.h> #include “my_file.h” CS410 – Software Engineering Lecture #2: Hello, C++ World!

  21. Preprocessor Directives If the file name is enclosed in angle brackets (<, >), the file is presumed to be a standard header file. Therefore, the preprocessor will search for the file in a predefined set of locations. If the file name is enclosed by a pair of quotation marks, the file is presumed to be a user-supplied header file. Therefore, the search for the file begins in the directory in which the including file is located (project directory). CS410 – Software Engineering Lecture #2: Hello, C++ World!

  22. Preprocessor Directives The included file may itself contain an #include directive (nesting). This can lead to the same header file being included multiple times in a single source file. Conditional directives guard against the multiple processing of a header file. Example: #ifndef SHOUT_H #define SHOUT_H /* shout.h definitions go here */ #endif CS410 – Software Engineering Lecture #2: Hello, C++ World!

  23. Preprocessor Directives The #ifdef, #ifndef, and #endif directives are most frequently used to conditionally include program code depending on whether a preprocessor constant is defined. This can be useful, for example, for debugging: CS410 – Software Engineering Lecture #2: Hello, C++ World!

  24. Preprocessor Directives int main() { #ifdef DEBUG cout << “Beginning execution of main()\n”; #endif string word; while (cin >> word) cout << “word read is: “ << word << “\n”; cout << “OK, that’s all.”; return 0;} CS410 – Software Engineering Lecture #2: Hello, C++ World!

  25. Comments • Comments are an important aid to human readers of our programs. • Comments need to be updated as the software develops. • Do not obscure your code by mixing it with too many comments. • Place a comment block above the code that it is explaining. • Comments do not increase the size of the executable file. CS410 – Software Engineering Lecture #2: Hello, C++ World!

  26. Comments In C++, there are two different comment delimiters: • the comment pair (/*, */), • the double slash (//). The comment pair is identical to the one used in C: • The sequence /* indicates the beginning of a comment. • The compiler treats all text between a /* and the following */ as a comment. • A comment pair can be multiple lines long and can be placed wherever a tab, space, or newline is permitted. • Comment pairs do not nest. CS410 – Software Engineering Lecture #2: Hello, C++ World!

  27. Comments The double slash serves to delimit a single-line comment: • Everything on the program line to the right of the delimiter is treated as a comment and ignored by the compiler. A typical program contains both types of comments. In general, use comment pairs to explain the capabilities of a class and the double slash to explain a single operation. CS410 – Software Engineering Lecture #2: Hello, C++ World!

More Related