Mail us : hexainclude@gmail.com
Hexainclude

Menu

Skip to content
  • HOME
  • C/C++
    • C
    • C++
  • OS
  • RDBMS
  • JAVA
  • PHP
  • WORDPRESS
  • DOWNLOAD
    • eBOOKS

CPP

Hexainclude > CPP
03Jan/17

Constructor Overloading

January 3, 2017CPPconstructor, constructor-overloading, function-overloadingDreamMaker

In our previous article of “Function Overloading”, we had discussed how a function can be overloaded. In this article, we will focus on Constructor Overloading. Similar to other normal function, we canRead More…

04Dec/16

Function Overloading

December 4, 2016CPPfunction-overloading, functions-in-cpp, passing-arguments, polymorphismDreamMaker

Overloading refers to the process of using the same thing for different purposes. It is also referred to as function polymorphism. It works on the concept “Same name, multiple tasks”. In programmingRead More…

02Dec/16

Inline Function

December 2, 2016CPPfunctions-in-cpp, inline-function, static-member-functionsDreamMaker

Problem in Using Normal Function The main advantage of function is to save codding efforts, memory space and reusability. But whenever we call a function, it consume  a lot of time sayRead More…

19Nov/16

Destructor

November 19, 2016CPPconstructor, destructor, types-of-constructorDreamMaker

Destructor is a special member function of a class, which is used to destroy the object. Like a constructor, it has same name as of class name, but it is preceded byRead More…

18Nov/16

Constructor

November 18, 2016CPPconstructor, copy-constructor, default-constructor, destructor, do-nothing-constructor, functions-in-cpp, parameterize-constructor, passing-object, types-of-constructorDreamMaker

A class is defined with the goal of creating user defined data type, which is similar to build-in-data-type. Built-in data type variables can be initialized at the time of declaration but weRead More…

10Nov/16

Static Data Member and Member Function

November 10, 2016CPPfunctions-in-cpp, static-data-members, static-member-functions, static-variableDreamMaker

Static Data Member (Class variable): Static Data member has the following properties: It is initialized by zero when first object of class is created. Only one copy of static data member isRead More…

09Nov/16

Object As Function Argument

November 9, 2016CPPfunction-arguments, functions, functions-in-cpp, passing-object, return_type, returning-objectDreamMaker

Similar to passing primary data-type variables, we can also pass object as argument to the function. Objects can be passed by two methods: Call by value: In this method a copy ofRead More…

07Nov/16

Default Argument

November 7, 2016CPPconstant, constant-arguments, default-argument, function-arguments, functions-in-cppDreamMaker

As we know that in C programming language it is compulsory to pass all arguments during function call, which are used in function definition, but C++ allows us to call a functionRead More…

06Nov/16

Functions in C++

November 6, 2016CPPfunctions, functions-in-cppDreamMaker

Function in C++ program is similar to function in C program. Function provides the top-down structured programming approach. It also provides re-usability that means we can use the same function multiple times.Read More…

23Sep/16

Class in C++

September 23, 2016CPPcharacteristics-of-member-function, class, class-structure, instance, objectDreamMaker

Class: “A Class is a user defined data type that combines both data and method into a single unit known as class”. “In other words, a class is a container which includesRead More…

Posts navigation

  • « Previous
  • 1
  • 2
  • 3
  • Next »
Download Android App

Recent Posts

  • NESTED STRUCTURE
  • ARRAY OF STRUCTURE
  • Array Within Structure
  • SSTF Scheduling
  • FCFS Scheduling

All Posts

  • Procedure-Oriented Programming Language(POP)
  • Object-Oriented Programming Language (OOP)
  • Features of OOP
  • Introduction to C++
  • Structure of C++ program
  • Structure in C++
  • Class in C++
  • Functions in C++
  • Default Argument
  • Object As Function Argument
  • Static Data Member and Member Function
  • Constructor
  • Destructor
  • Inline Function
  • Function Overloading
  • Constructor Overloading
  • Friend Function
  • Operator Overloading
  • Overloading Unary Operator
  • Overloading Binary Operator
  • Overloading Insertion and Extraction Operators
  • Overloading Operators For String
  • Type Conversion
  • Basic to Class Type Conversion
  • Class Type to Basic Conversion
  • Class to Class Conversion
Copyright © Hexainclude
Developed by Hexainclude
  • TIPS &TRICKS
  • QUIZ
  • CONTACT US