计算机小混子 2022-04-12 19:57 采纳率: 100%
浏览 11
已结题

如下图标编译器报错求原因和解决办法


#ifndef _POINT_H
#define _PIONT_H
class Point {//类的定义
public://外部接口
    Piont();
    Piont(int x, int y);
    ~Piont();
    void move(int newX, int newY);
    int getX() const { return x; }
    int getY() const { return y; }
    static void showCount();//静态数据成员
private:
    int x, y;
#endif  //_PIONT_H



};

#include <iostream>
#include "Piont.h"
using namespace std;
Point::Point() {
    x = y = 0;
    cout << "Default Constructor called." << endl;

}
Point::Point(int x, int y) :x(x),y(y) {
    cout << "Constructor called." << endl;
}
Point::~Point() {
    cout<<"Destructor called." << endl;
}
void Point::move(int newX, int newY) {
    cout << "Moving the point to(" << newX << "," << newY << ")" << endl;
    x = newX;
    y = newY;


}
// 6-3对象数组应用举例.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。
//

#include <iostream>
#include "Piont.h"
using namespace std;
int main()
{
    cout << "Entering main..." << endl;
    Point a[2];
    for (int i = 0; i < 2; i++)
        a[i].move(i + 20, i + 20);
    cout<<"Exiting msin..." << endl;
    return 0;

}


img

img

  • 写回答

1条回答 默认 最新

  • 非西昂 2022-04-12 20:53
    关注

    img


    写错了,俩都不一样

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

问题事件

  • 系统已结题 4月20日
  • 已采纳回答 4月12日
  • 创建了问题 4月12日

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 R语言卸载之后无法重装,显示电脑存在下载某些较大二进制文件行为,怎么办
  • ¥15 java 的protected权限 ,问题在注释里