DOC PREVIEW
UE CS 215 - Lecture Notes

This preview shows page 1-2-3-4-5-6 out of 17 pages.

Save
View full document
View full document
Premium Document
Do you want full access? Go Premium and unlock all 17 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 17 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 17 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 17 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 17 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 17 pages.
Access to all documents
Download any document
Ad free experience
Premium Document
Do you want full access? Go Premium and unlock all 17 pages.
Access to all documents
Download any document
Ad free experience

Unformatted text preview:

Lecture 1OutlineWhat is Unix ?Logging into Linux - ConsoleLogging into Linux - PuttyBasic Unix Commands 1Basic Unix Commands 2Basic Unix Commands 3Basic Unix Commands 4Programming Using g++What is C++?Library Headers and NamespacesConstants and typesConsole Input and Output 1Console Input and Output 2Console I/O ExampleIn-class ExerciseMonday, January 10 CS 215 Fundamentals of Programming II - Lecture 1 1Lecture 1Introduction sheetCourse webpagehttp://csserver.evansville.edu/~hwang/s11-courses/cs215.htmlHandouts, assignmentsSupplemental resourcesC++, C, Java comparisonBasic UnixSyllabus and schedule, textbooksCS Lab and KC-267Monday, January 10 CS 215 Fundamentals of Programming II - Lecture 1 2OutlineWhat is Unix?Logging into LinuxBasic Unix commandsProgramming using g++What is C++?Library headers and namespacesConstants and typesConsole input and outputMonday, January 10 CS 215 Fundamentals of Programming II - Lecture 1 3What is Unix?Unix is an operating system that is highly configurableLinux is an open-source version of UnixUbuntu is a distribution of LinuxCS Lab and Kc-267 have clients that dual-boot Ubuntu Linux and Windows 7Linux clients use csserver.evansville.edu for login and home directory serviceUnix is command-line orientedMonday, January 10 CS 215 Fundamentals of Programming II - Lecture 1 4Logging into Linux - ConsoleMonday, January 10 CS 215 Fundamentals of Programming II - Lecture 1 5Logging into Linux - PuttyMonday, January 10 CS 215 Fundamentals of Programming II - Lecture 1 6Basic Unix CommandsChanging passwords - old, new, new againyppasswd - on UE client machinespasswd - on VirtualBoxCreating (sub) directories (i.e., folders)mkdir <dir1> <dir2> …Example: mkdir cs215Listing directoriesls, ls -l, ls -a, ls -la Example: ls -l cs215Monday, January 10 CS 215 Fundamentals of Programming II - Lecture 1 7Basic Unix CommandsChanging permissions ("change mode")chmod <mode> <name1> <name2> …Mode is three sets (owner, group, world) of three privileges (read, write, execute)Represented as 9 bits (r,w,x are 1, - is 0) in octal (base 8)Example: rwx------ is read, write, execute privileges for owner only becomes 700Example: chmod 700 cs215Monday, January 10 CS 215 Fundamentals of Programming II - Lecture 1 8Basic Unix CommandsChanging directoriescd - to home directory, cd <dir>Path relative to current directory unless starts with /Examples: cd cs215, cd /etcAlso, . ("dot" - current), .. ("dot-dot" - parent), ~ ("tilde" - home)Wildcards* - 0 or more characters, e.g. project1.*? - exactly 1 character, e.g. project?.cppMonday, January 10 CS 215 Fundamentals of Programming II - Lecture 1 9Basic Unix CommandsAlmost all Unix commands have a "man" (i.e., manual) page accessible by the "man" command.Examples: man ls, man chmodMonday, January 10 CS 215 Fundamentals of Programming II - Lecture 1 10Programming Using g++Separate text editor - emacs, vim, geditC++ source files have extension .cppUser-defined header files still use .hSeparate compiler - g++Command line options: -Wall, -o <progname>Example: g++ -Wall -o hello hello.cpp./<progname> is the command to run the program; default program name is a.outSeparate build facility - makeMonday, January 10 CS 215 Fundamentals of Programming II - Lecture 1 11What is C++?C++ is a programming language based on C with objects and object-oriented constructs; see on-line comparison documentFocus will be on the use of classes to design and implement abstract data typesMinor syntactic differences, for exampleComments can start with // to end of lineAlways int main (), never void main ()No need for void in parameter listMonday, January 10 CS 215 Fundamentals of Programming II - Lecture 1 12Library Headers and NamespacesC++ library headers to not have .h extensionExample: #include <iostream>C libraries have same name prefixed with 'c'Example: #include <cmath>All library names are in namespace std. Prefix names with namespace. E.g. std::coutImport names with using statementsExample: using namespace std;Example: using std::cout;Monday, January 10 CS 215 Fundamentals of Programming II - Lecture 1 13Constants and typesUse const to define constants (not #define)Example: const int MAX_SIZE = 80;Built-in boolean type bool with literals true and falseExample: bool done = false;Library string type string defined in <string> has =, relops, +. Example:string word1 = "hot", word2 = "dog";string word3 = word1 + word2;Monday, January 10 CS 215 Fundamentals of Programming II - Lecture 1 14Console Input and OutputC++ I/O is done using character stream objectsConsole I/O defined in <iostream>cin - ("see-in") input stream connected to keyboardcout, cerr - ("see-out", "see-err") output streams connected to screenendl - ("end-ell") newline with buffer flushingMonday, January 10 CS 215 Fundamentals of Programming II - Lecture 1 15Console Input and OutputInput streams use extraction operator (>>)<input stream> >> <variable>Skips whitespaceOutput streams use insertion operator (<<)<output stream> << <expression>Both operators return the left-hand stream operand so that multiple operations may be chained togetherMonday, January 10 CS 215 Fundamentals of Programming II - Lecture 1 16Console I/O Exampleint anInt;double aDouble;cout << "Enter an integer and " << "a double: "cin >> anInt >> aDouble;cout << "You entered " << anInt << " and " << aDouble << endl;Monday, January 10 CS 215 Fundamentals of Programming II - Lecture 1 17In-class ExerciseWrite a C++ program that asks for two real numbers and displays which number is the larger one. E.g., (user input in bold)Enter two real numbers: 3.4 -7.3The larger number is 3.4Use a text editor to type in the program and use g++ to compile the program. Test the program. When you are confident that it works, demonstrate it to the


View Full Document

UE CS 215 - Lecture Notes

Documents in this Course
Lecture 4

Lecture 4

14 pages

Lecture 5

Lecture 5

18 pages

Lecture 6

Lecture 6

17 pages

Lecture 7

Lecture 7

28 pages

Lecture 1

Lecture 1

16 pages

Lecture 5

Lecture 5

15 pages

Lecture 7

Lecture 7

28 pages

Load more
Download Lecture Notes
Our administrator received your request to download this document. We will send you the file to your email shortly.
Loading Unlocking...
Login

Join to view Lecture Notes and access 3M+ class-specific study document.

or
We will never post anything without your permission.
Don't have an account?
Sign Up

Join to view Lecture Notes 2 2 and access 3M+ class-specific study document.

or

By creating an account you agree to our Privacy Policy and Terms Of Use

Already a member?