| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 545 人关注过本帖
标题:再来一题很简单的,帮忙找哈错!
取消只看楼主 加入收藏
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
快速回复:再来一题很简单的,帮忙找哈错!
数据加载中...
 
   



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

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