Overload ( operator overloading) 예제
연산자 오버로딩 예제 사칙연산(+-*/) ,(+=,-=,*=,/=) , 비교연산 () , 전위 후위 상승 연산자 (++ --) 구현 완료 좌표값과 좌표값 사칙연산가능상수값과 좌표값 사칙연산가능비교연산 좌표값과 좌표값간의 비교연산 가능 #include#include#include#include class Point3 { public:int x;int y;int z; Point3(int x, int y,int z) {this->x = x;this->y = y;this->z = z;} //print pointvoid print_point() {printf("(%d , %d, %d) \n", this->x,this->y,this-> z);}//vector ABS 벡터의 절대값float volume() {retu..
개발생활/C C++
2017. 5. 24. 09:35