|
Technical Interview Questions
Visual Basic Interview Question
ASP .NET Interview Questions
C++ Interview Questions
C
Interview Questions
.........More
Programming Source Codes
C/C++ Source Codes
C# Source Codes
.........More
Aptitude Interview Questions
C/C++ Aptitude Questions
C Aptitude Questions
.........More
Tutorials
C Tutorial
C++ Tutorial
.........More
Soft Skills
Communication Skills
Leadership Skills
.........More
|
|
C/C++ Source Codes
declare only one constructor
and give it default parameters wherever possible instead of overloading
constructors
//It is a good practice to try not to overload the constructors.
//Best is to declare only one constructor and give it default parameters
//wherever possible :
#include <iostream.h>
class vector
{
public:
double x;
double y;
vector (double a = 0, double b = 0)
{
x = a;
y = b;
}
};
void main ()
{
vector k;
cout << "vector k : " << k.x << ", " << k.y << endl << endl;
vector m (45, 2);
cout << "vector m : " << m.x << ", " << m.y << endl << endl;
vector p (3);
cout << "vector p : " << p.x << ", " << p.y << endl << endl;
}
<<<----- Return to
C/C++ Source Code Questions Page.
Have a Question ?
post your questions here. It
will be answered as soon as possible.
Check
Object Oriented Interview
Questions for more Object Oriented Interview Questions with answers
Check
Data Structure
Interview Questions for more data structure interview questions with
answers
|