博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
第五周项目3-用多文件组织多个类的程序
阅读量:6694 次
发布时间:2019-06-25

本文共 2077 字,大约阅读时间需要 6 分钟。

将项目2用“一个项目多个文件”的方式实现,其中两个类的声明放在同一个.h文件中,每个类的成员函数分别放一个文件,main()函数用一个文件。体会这样安排的优点。

class.h

#ifndef CLASS_H_INCLUDED#define CLASS_H_INCLUDEDclass CPoint{private:    double x;  // 横坐标    double y;  // 纵坐标public:    CPoint(double xx=0,double yy=0);    double distance1(CPoint p) const;   // 两点之间的距离    void input();  //以x,y 形式输入坐标点    void output(); //以(x,y) 形式输出坐标点};class CTriangle{public:    CTriangle(CPoint &X,CPoint &Y,CPoint &Z):A(X),B(Y),C(Z) {}; //给出三点的构造函数    void setTriangle(CPoint &X,CPoint &Y,CPoint &Z);//    float perimeter(void);//计算三角形的周长    float area(void);//计算并返回三角形的面积    bool isRightTriangle(); //是否为直角三角形    bool isIsoscelesTriangle(); //是否为等腰三角形private:    CPoint A,B,C; //三顶点};#endif // CLASS_H_INCLUDED
class.cpp

#include 
#include
#include "class.h"using namespace std;CPoint::CPoint(double xx,double yy):x(xx),y(yy) {};double CPoint::distance1(CPoint p) const{ double s; s=sqrt((p.x-x)*(p.x-x)+(p.y-y)*(p.y-y)); return s;}void CPoint::input(){ char ch; cout<<"Please input the point(x,y):"; while(1) { cin>>x>>ch>>y; if (ch==',') break; cout<<"Wrong style,please input agein."<
max) max=b; if(c>max) max=c; if(((max==a)&&(abs(a*a-b*b-c*c)<1e-7))||((max==b)&&(abs(b*b-a*a-c*c)<1e-7))||((max==c)&&(abs(c*c-b*b-a*a)<1e-7))) return true; else return false;}bool CTriangle::isIsoscelesTriangle()//是否为等腰三角形{ double a=B.distance1(C),b=C.distance1(A),c=A.distance1(B); if((abs(a-b)<1e-7)||(abs(b-c)<1e-7)||(abs(c-a)<1e-7)) return true; else return false;}
main.cpp

/** Copyright (c) 2015,烟台大学计算机学院* All right reserved.* 作者:邵帅* 文件:Demo.cpp* 完成时间:2015年04月08日* 版本号:v1.0*/#include 
#include
#include "class.h"using namespace std;int main() //测试数据,来自贺老{ CPoint X(2,5),Y(5,2),Z(7,8); CTriangle Tri1(X,Y,Z); //定义三角形类的一个实例(对象) cout<<"该三角形的周长为:"<
<<",面积为:"<
<
<

  

@ Mayuko

转载于:https://www.cnblogs.com/mayuko/p/4567520.html

你可能感兴趣的文章
Linux 之 hugepage 大页内存理论
查看>>
第e物流董事总裁蔡远游:大数据应用、风控与行业信用建设
查看>>
Cisco交换机基础命令 + Win Server08 R2 多网卡配置链路聚合
查看>>
C#.net技术内幕03---字符串
查看>>
我的第一个python web开发框架(10)——工具函数包说明(一)
查看>>
出版行业可以利用AR增强现实技术大作文章
查看>>
javascript之事件监听
查看>>
linux运维转行程序员
查看>>
国内外软件测试大会汇总
查看>>
背水一战 Windows 10 (72) - 控件(控件基类): UIElement - UIElement 的位置, UIElement 的布局, UIElement 的其他特性...
查看>>
iscis
查看>>
iOS HTTP 资源时需要对 URL 进行 Encode
查看>>
nginx 负载均衡5种方式及其服务器几种状态
查看>>
每天早上七点钟备份公司的web站点计划
查看>>
iOS GCD(Grand Central Dispatch)的使用(1)
查看>>
linux ftp上传下载命令操作
查看>>
ELK实时日志分析平台(elk+kafka+metricbeat)-metricbeat(三)
查看>>
Linux命令之帮助命令
查看>>
NGINX由入门到精通:编译安装nginx
查看>>
救援模式修复bootloader
查看>>