标题:再来一题很简单的,帮忙找哈错!
取消只看楼主
lzywin
Rank: 1
等 级:新手上路
帖 子:21
专家分:0
注 册:2009-11-11
结帖率:50%
已结贴  问题点数:10 回复次数:1 
再来一题很简单的,帮忙找哈错!
谢谢 各位!!
//Point类的定义
//Point.h
#ifndef POINT_H
#define POINT_H
#include<iostream.h>
class Point{
public:
    Point(int a=0,int b=0);
    Point(Point&);
    ~Point();
    int get_x()const;
    int get_y()const;
    void put_x(int a);
    void put_y(int b);

    Point operator=(const Point& p1);//重载赋值运算符:当前对象=p1
    Point operator+(const Point& p1);//重载加法运行符:当前对象+p1
    Point operator*(int i);            //重载乘法运算符:当前对象*i
private:
    int x,y;
};
#endif
//Point.cpp
此处是成员函数的实现。
#include “Point.h”
Point operator=(const Point& p1)
{   Point p;
    p.x=p1.x;
    p.y=p1.y;
return p;
}
Point operator+(const Point& p1)
{ Point p;
 p.x=++p1.x;
 p.x=++p1.y;

return p;}
Point operator*(int i)
{  Point p;
p.x=x*p1.x-y*p1.y;
p.y=x*p1.y+y*p1.x;
return p;}
重载函数的测试
//main.cpp
#include <iostream>
Using namespace std;
#include “Point.h”
Int main{
Point c(2,3);
Point p;
Cin>>p;
Cout<<c<<endl;
Return 0;
}




搜索更多相关主题的帖子: include public 
2009-11-11 17:02
lzywin
Rank: 1
等 级:新手上路
帖 子:21
专家分:0
注 册:2009-11-11
得分:0 
//Point类的定义
//Point.h
#ifndef POINT_H
#define POINT_H
#include<iostream.h>
class Point{
public:
    Point(int a=0,int b=0);
    Point(Point&);
    ~Point();
    int get_x()const;
    int get_y()const;
    void put_x(int a);
    void put_y(int b);

    Point operator=(const Point& p1);//重载赋值运算符:当前对象=p1
    Point operator+(const Point& p1);//重载加法运行符:当前对象+p1
    Point operator*(int i);            //重载乘法运算符:当前对象*i
private:
    int x,y;
};
#endif
只是写成员函数的实现及测试这三个成员函数的主函数
2009-11-13 22:35



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-291949-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.188100 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved