Difference between revisions of "Advanced Cpp"

From Script | Spoken-Tutorial
Jump to: navigation, search
(4 intermediate revisions by 2 users not shown)
Line 6: Line 6:
 
==Advance Level==
 
==Advance Level==
  
1) Classes and Objects in C++  
+
1) '''Classes and Objects in C++'''
  
 
+
*Defining Classes  
-Defining Classes  
+
**create a class  
 
+
*Defining Objects  
-create a class  
+
**create an object of the class  
 
+
*Member Functions  
-Defining Objects  
+
*To create a function  
 
+
*Encapsulation
-create an object of the class  
+
*Data Abstraction
 
+
-Member Functions  
+
 
+
-To create a function  
+
 
+
-Encapsulation
+
 
+
-Data Abstraction
+
  
  
 
2) Constructor and Destructor  
 
2) Constructor and Destructor  
  
 
+
*Constructor and Destructor  
-Constructor and Destructor  
+
*To create a constructor  
 
+
*Parameterized constructors
-To create a constructor  
+
*Default constructor
 
+
*Destructor  
-Parameterized constructors
+
 
+
-Default constructor
+
 
+
-Destructor  
+
  
  
 
3) static members in C++  
 
3) static members in C++  
  
 
+
*Static Keyword  
-Static Keyword  
+
*Static variable  
 
+
*Static member function  
-Static variable  
+
 
+
-Static member function  
+
  
  
 
4) Inheritance
 
4) Inheritance
  
 +
*Inheritance
 +
*Concept of subclass and superclass
 +
*Types of inheritance
 +
*Single level inheritance
 +
*Multilevel inheritance
  
-Inheritance
 
  
-Concept of subclass and superclass
+
5) More on Inheritance
  
-Types of inheritance
+
*Multiple Inheritance
 
+
*Derived class inherits from more than one base class
-single level inheritance
+
*Hierarchical Inheritance
 
+
*Multiple derived classes inherit from one base class
-Multilevel inheritance
+
 
+
 
+
5) Multiple and Hierarchical Inheritance
+
 
+
 
+
-Multuple Inheritance
+
 
+
-Hierarchical Inheritnace
+
  
  
 
6) Function overloading and overriding
 
6) Function overloading and overriding
  
-function overloading
+
*Function overloading
 
+
*Function overriding
-function overriding
+
*Difference between both
 
+
-difference between both
+
  
  
 
7) Polymorphism in C++  
 
7) Polymorphism in C++  
  
 
+
*Polymorphism  
-Polymorphism  
+
*Virtual Members
 
+
*Virtual Function
-Virtual Members
+
 
+
-Virtual Function
+
  
  
 
8) Abstract class in C++
 
8) Abstract class in C++
  
 
+
*Pure virtual function
-Pure virtual function
+
*abstract methods  
 
+
-abstract methods  
+
  
  
 
9) Friend Function
 
9) Friend Function
  
 
+
*friend function
-friend function
+
  
  
 
10) Exception Handling  
 
10) Exception Handling  
  
 
+
*Exceptions  
-Exceptions  
+
*try  
 
+
*throw  
-try  
+
*catch
 
+
-throw  
+
 
+
-catch
+

Revision as of 16:17, 4 August 2015

C++ is a programming language developed by Bjarne Stroustrup starting in 1979 at Bell Labs. C++ is a statically typed, free-form, multi-paradigm, compiled, general-purpose, powerful programming language. C++ is an object oriented language. It supports features like classes and objects, Polymorphism, Encapsulation, Inheritance etc. C++ is also used for hardware design.

Contents

Advance Level

1) Classes and Objects in C++

  • Defining Classes
    • create a class
  • Defining Objects
    • create an object of the class
  • Member Functions
  • To create a function
  • Encapsulation
  • Data Abstraction


2) Constructor and Destructor

  • Constructor and Destructor
  • To create a constructor
  • Parameterized constructors
  • Default constructor
  • Destructor


3) static members in C++

  • Static Keyword
  • Static variable
  • Static member function


4) Inheritance

  • Inheritance
  • Concept of subclass and superclass
  • Types of inheritance
  • Single level inheritance
  • Multilevel inheritance


5) More on Inheritance

  • Multiple Inheritance
  • Derived class inherits from more than one base class
  • Hierarchical Inheritance
  • Multiple derived classes inherit from one base class


6) Function overloading and overriding

  • Function overloading
  • Function overriding
  • Difference between both


7) Polymorphism in C++

  • Polymorphism
  • Virtual Members
  • Virtual Function


8) Abstract class in C++

  • Pure virtual function
  • abstract methods


9) Friend Function

  • friend function


10) Exception Handling

  • Exceptions
  • try
  • throw
  • catch

Contributors and Content Editors

Ashwini, Nancyvarkey, PoojaMoolya