1 / 56

Introduction to C++

Introduction to C++. Overview. Enhanced C. OOP & classes. Inheritance. Enhanced C. Includes C and more. Compilation using g++. Has a standard library for added functionality. Overloaded function names. Using the same name for operations on different types is called overloading .

Download Presentation

Introduction to C++

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. Introduction to C++

  2. Overview • Enhanced C. • OOP & classes. • Inheritance.

  3. Enhanced C • Includes C and more. • Compilation using g++. • Has a standard library for added functionality.

  4. Overloaded function names • Using the same name for operations on different types is called overloading. int max(int, int); double max(double, double); long max(long, long);

  5. Overloaded function names • Finding the right version to call from a set of overloaded functions is done by looking for a best match between the type of the argument expression and the parameters of the functions: • Exact match • Match using promotions: bool,char,short to int; float to double. • Match using standard conversions: int to double, double to int

  6. Overloaded function names void print(char); void print(int); void h(char c, int i, short s, double d) { print(c); // exact match: invoke print(char) print(i); // exact match: invoke print(int) print(s); // promotion: invoke print(int) print(d); // conversion: double to int }

  7. Default arguments • A general function often needs more arguments than are necessary to handle simple cases. • For example, giving the user an option of what base to print in seems reasonable, but in most programs integers will be printed as decimal integer values.

  8. Default arguments void print(int value, int base=10); void f() { print(31); // produce output 31 print(31, 16); // 1f print(31, 2); // 11111 print(); // error print(31,5,6); // error } • Default values may be provided for trailing arguments only.

  9. Output • The iostream library defines output for every built-in type. Values output to cout are converted to a sequence of characters. void f(int i) { cout << “the value of i is "; cout << i; cout << ‘\n’; }

  10. Output • The result of an output expression can itself be used for further output. void f(int i) { cout << “the value of i is “ << i << endl; } • Equivalent to previous function.

  11. Input void f() { int i; cin >> i; // read an integer into i }

  12. new and delete • The new operator creates an object, and it exists until destroyed by the delete operator. struct S { // .. }; S* f() { S* p = new S; return p; } void g(S* p) { delete p; } int *q = new int[20]; delete [] q;

  13. Inline function • A direction for the compiler to generate code for a call inline. C macro #define max(a,b) (((a) > (b) ? (a) : (b)) C++ inline function inline int max(int a, int b) {return a>b ? a : b ;}

  14. Reference • A reference is an alternative name for an object. The notation X& means reference to X. A reference must be initialized. void f() { int i = 1; int& r = i; // r and i refer to same int int x = r; // x = 1 r = 2; // i = 2 }

  15. Argument passing void f(int val, int& ref) { val++; ref++; } • When f() is called, val++ increments a local copy of the 1st argument, whereas ref++ increments the 2nd argument.

  16. Argument passing void g() { int i = 1; int j = 1; f(i, j); // increments j but not i } • The 1st argument, i, is passed by value, the 2nd argument, j, is passed by reference.

  17. Argument passing • It can be more efficient to pass a large object by reference than to pass it by value. • Declaring an argument const does not enable the called function to change the object value. void f(const Large& arg) { // the value of arg cannot be changed }

  18. Example code #include <iostream> using namespace std; const double m_to_k = 1.609; // miles to kilometers inline int convert(int mi) { return (mi * m_to_k); } int main() { int miles; do { cout << "Input distance in miles: "; cin >> miles; cout << "\nDistance is " << convert(miles) << " km." << endl; } while (miles > 0); return 0; }

  19. Object Oriented Programming • Encapsulation of a set of data types and their operations: the class construct. • Data hiding. • Data type hierarchy & code reuse via inheritance: deriving a new class from an existing one. • Design is crucial!

  20. Classes • A class is a user-defined type, which allows encapsulation. • The construct class X { ... }; is a class definition. • Contains data and function members. • Access control mechanisms (private vs. public – see below).

  21. Class example 1 class Point { private: int x, y, visible; // private part // can be used only by member functions public: // public part, interface void setpoint(int xx, int yy) { x=xx; y=yy; visible = 1; } int getx() { return x; } int gety() { return y; } void draw() { gotoxy(x,y); putchar('*'); visible = 1; } void hide() { gotoxy(x,y); putchar(' '); visible = 0; } // member functions defined within the class definition, }; // rather than simply declared there are inline.

  22. Class example 1 Point p1, p2; p1.init(10,20); p1.show(); p2.init(15,15); p2.show(); p1.hide();

  23. Member functions • A member function declaration specifies: • The function can access the private part of the class declaration. • The function is in the scope of the class. • The function must be invoked on an object. • In a member function, member names can be used without explicit reference to an object.

  24. Class example 2 class Array { private: int *parray; int size; public: void init(); int get(int indx); void print(); void set(int indx, int value); }; // :: is the scope resolution operator void Array::init(){ parray = 0; size = 0; } int Array::get(int i) { return parray[i]; } void Array::print() { for (int i = 0; i < size; i++) cout << endl << “array[“ << i << “]=“ << parray[i]; }

  25. Class example 2 void Array::set(int indx, int value) { if (indx > size) { int *p = new int[indx+1]; for (int i = 0; i < size; i++) p[i] = parray[i]; delete [] parray; size = indx; parray = p; } parray[indx] = value; } Array a1; a1.init(); a1.set(3,50); a1.set(1,100); a1.set(2,70); a1.print();

  26. Constructors • Using functions such as init() to initialize class objects is error prone and complicates the code. • Constructors are member functions with the explicit purpose of constructing values of a given type, recognized by having the same name as the class itself.

  27. Destructors • A constructor initializes an object, creating the environment in which the member functions operate. This may involve acquiring a resource such as a file, lock, and usually memory, that must be released after use. • Destructor is a function that is guaranteed to be invoked when an object is destroyed, cleans up and releases resources.

  28. Constructors and destructors class Array { Array(); // default constructor Array(int); // constructor ~Array(); // destructor }; Array::Array() { parray = 0; size = 0; } Array::Array(int len) { parray = new int[len]; size = len; } Array::~Array() { delete [] parray; }

  29. Constructors Array a; Array b(10);

  30. Constructors and destructors class String { char *str; //private data public: String() { str = new char[1]; str[0] = 0; } String(const char *s); ~String(); int length(); } String::String(const char *s) { str = new char[strlen(s)+1]; strcpy(str, s); // destination, source } String::~String() { delete str; }

  31. Copy constructor • If x is an object of class X, “X y=x;” (or, equivalently “X y(x);”) by default means member-wise copy of x into y. This can cause undesired effects when used on objects of a class with pointer members. • The programmer can define a suitable meaning for copy operations by a copy constructor (and similarly for the assignment op.) Table::Table(const Table& t) { p = new Name[size = t.size]; for (int i = 0; i < size; i++) p[i] = t.p[i]; } String::String(const String &s) { str = new char[s.length()+1]; strcpy(str, s); }

  32. Self-reference, this • Each (non-static) member function knows what object it was invoked for and can explicitly refer to it. • Implicitly declared as: X *const this; • Used to return the object or to manipulate a self-referential data structure. Date& Date::set_date(int dd, int mm, int yy) { d = dd; m = mm; y = yy; return *this; // enables cascading } d.set_date( 20, 1, 2000 ).print();

  33. Friends • A friend function declaration specifies: the function can access the private part of the class declaration. • Useful for object output (see below).

  34. Friends example class Vector { int v[4]; public: Vector() { v[0] = v[1] = v[2] = v[3] = 0; } int& elem(int i) { return v[i]; } }; class Matrix { Vector v[4]; public: int& elem(int i, int j) { return v[i].elem(j); } }; // multiply cannot be a member of both Matrix and Vector Vector multiply(const Matrix & m, const Vector & v) { Vector r; for (int i = 0; i < 4; i++) for(int j = 0; j < 4; j++) r.elem(i) += m.elem(i,j) * v.elem(j); return r; };

  35. Friends example class Matrix; class Vector { int v[4]; public: Vector(){ v[0] = v[1] = v[2] = v[3] = 0; } int& elem(int i) { return v[i]; } friend Vector multiply(const Matrix &, const Vector &); }; class Matrix { Vector v[4]; public: int& elem(int i, int j) { return v[i].elem(j); } friend Vector multiply(const Matrix &, const Vector &); }; // multiply can be a friend of both Matrix and Vector Vector multiply(const Matrix & m, const Vector & v) { Vector r; for (int i = 0; i < 4; i++) for(int j = 0; j < 4; j++) r.v[i] += m.v[i].v[j] * v.v[j]; return r; };

  36. Operator overloading • Conventional shorthand x+y*z is clearer than multiply y by z and add the result to x • C++ supports a set of operators for its built-in types, and allows to provide operators for user defined types.

  37. Operator overloading class complex { double re, im; Public: //member initialization list complex(double r, double i) : re(r), im(i) { } complex operator+(complex); complex operator*(complex); }; void f() { complex a = complex(1, 3.1); complex b = complex(1.2,2); complex c = a + b; // shorthand complex d = a.operator+(b); // explicit call complex e = b + c * d; // usual precedence }

  38. Operator overloading example class Point { int x, y; public: Point() {}; Point(int xx, int yy) { x = xx; y = yy; } Point operator+(Point& p); Point operator++(); void show() { gotoxy(x, y); putchar('*'); } }; Point Point::operator+(Point& p) { Point tmp; tmp.x = x + p.x; tmp.y = y + p.y; return tmp; } Point& Point::operator++(){ x++; y++; return *this; }

  39. Operator overloading example int main() { Point p1(10,20), p2(2,10), p3; p3 = p1 + p2; p3.show(); (p1+p2).show(); }

  40. Derived classes employee: manager: name age … name age … group level

  41. struct employee { // base char* name; short age; short department; int salary; employee* next; //... }; struct manager { employee emp; // manager's employee record employee* group; // people managed short level; }; • Cannot put manager onto a list of employees without writing special code

  42. Derived classes // a manager is an employee // derived struct manager : public employee { employee* group; // people managed short level; }; employee manager

  43. Derived classes void f() { manager m1, m2; employee e1, e2; employee* elist; // heterogonous list elist = &m1; // put manager m1 on elist m1.next = &e1; // put employee e1 on elist e1.next = &m2 // put manager m2 on elist m2.next = &e2; // put employee e2 on elist e2.next = 0; }

  44. Derived classes class employee { string name; public: employee* next; // public to allow listmanipulation void print() const; string getname() { return name; } }; class manager : public employee { int level; public: void print() const; //function overriding }; void manager::print() const { cout << “name is” << getname() << endl; cout << “name is” << name << endl; // error employee::print(); // print employee information cout << level; // print manager information }

  45. Access control • A member of a class can be private, protected, or public. 1. If it’s private, its name can be used only by member functions and friends of the class in which it is declared. 2. If it’s protected, its name can be used only by member functions and friends of the class in which its declared and by member function and friends of classes derived from this class. 3. If it’s public, its name can be used by any function.

  46. Access control class Base1 { private: int i; protected: int j; public: int k; }; main () { Base1 b; int x; x = b.i; // error x = b.j; // error x = b.k; // ok }

  47. Access control • There are three kinds of functions accessing a class: • Functions implementing the class (its friends and members) • Function implementing a derived class (the derived class’ friends and members) • Other functions. general users derived class’ member functions and friends own member functions and friends public: protected: private:

  48. Access control: derived classes Under public inheritance: • Public member remains public in derived class. • Protected member remains protected in derived class. • Private member is hidden in derived class.

  49. Constructors • Some derived classes need constructors. If the base class has a constructor then it must be called. class employee { string name; int department; public: employee(const string& n, int d); }; class manager : public employee { int level; public: manager(const string& n, int d, int lvl); };

  50. Constructors • Arguments for base class’ constructor are specified in the definition of a derived class’ constructor. • A derived class constructor can specify initializers of its own members and immediate bases only, it cannot directly initialize members of a base. • Ctors are called bottom-up and dtors top-down. employee::employee(const string& s, int d) : name(n), department(d) // initialize members { } manager::manager(const string& s, int d, int lvl) : employee(n, d), // initialize base class level(lvl) // initialize members ,name(n) // error { }

More Related