#include<iostream>
using namespace std;
class vector
{
float x;
float y;
float z; //data members
public:
vector(){ } //default constructor
vector(float x,float y,float z) //parameterized constructor
{
this->x = x;
this->y = y;
this->z = z;
}
void display(); //member functions declaration
void operator-(); //- operator overloading declaration
void operator++(); //++ operator overloading declaration
void operator--(); //-- operator overloading declaration
};
void vector::display() //member function definition
{
cout<<"Vector : "<<x<<"i + "<<y<<"j + "<<z<<"k"<<endl;
}
void vector::operator-() //- operator overloading definition
{
x = -x;
y = -y;
z = -z;
}
void vector::operator++() //++ operator overloading definition
{
++x;
++y;
++z;
}
void vector::operator--() //-- operator overloading definition
{
--x;
--y;
--z;
}
int main()
{
float a,b,c;
cout<<"Enter three values : ";
cin>>a>>b>>c;
vector v1(a,b,c); //object created and parameterized constructor invoked
v1.display(); //member function calling
cout<<"-v1 : "<<endl;
-v1; //operator- function calling
v1.display();
cout<<"++v1 : "<<endl;
++v1; //operator++ function calling
v1.display();
cout<<"--v1 : "<<endl;
--v1; //operator-- function calling
v1.display();
return 0;
}
---------
using namespace std;
class vector
{
float x;
float y;
float z; //data members
public:
vector(){ } //default constructor
vector(float x,float y,float z) //parameterized constructor
{
this->x = x;
this->y = y;
this->z = z;
}
void display(); //member functions declaration
void operator-(); //- operator overloading declaration
void operator++(); //++ operator overloading declaration
void operator--(); //-- operator overloading declaration
};
void vector::display() //member function definition
{
cout<<"Vector : "<>a>>b>>c;
vector v1(a,b,c); //object created and parameterized constructor invoked
v1.display(); //member function calling
cout<<"-v1 : "<