小胡不糊涂123 2023-03-20 11:34 采纳率: 95.2%
浏览 18
已结题

C++中的友元函数和命名空间

这是正确的代码:

#include<iostream>

class Point
{
private:
    int x, y;
public:
    
    void set(int a, int b)
    {
        x = a;
        y = b;
    }
    void show()
    {
        std::cout << "(" << x << "," << y << ")"<<std::endl;
    }

    friend Point operator-(const Point& p2);
};

Point operator-(const Point& p2)
{
    Point temp;
    temp.x = -p2.x;
    temp.y = -p2.y;
    return temp;
}

int main()
{
    int a = 10;
    Point p1;
    p1.set(1, 2);
    p1.show();
    Point p2 = operator-(p1);
    p2.show();
    
    system("pause");
    return 0;
}

这是错误的代码:

#include<iostream>
using namespace std;

class Point
{
private:
    int x, y;
public:
    
    void set(int a, int b)
    {
        x = a;
        y = b;
    }
    void show()
    {
        cout << "(" << x << "," << y << ")"<<endl;
    }

    friend Point operator-(const Point& p2);
};

Point operator-(const Point& p2)
{
    Point temp;
    temp.x = -p2.x;
    temp.y = -p2.y;
    return temp;
}

int main()
{
    int a = 10;
    Point p1;
    p1.set(1, 2);
    p1.show();
    Point p2 = operator-(p1);
    p2.show();
    
    system("pause");
    return 0;
}

在VS2022上都可以通过,但是用devc++或者vc++错误代码就通过不了,只是在开头加了一句命名空间为什么会报错?
友元函数和命名空间冲突吗?还是不同编译器的问题?

下面是报错原因:
INTERNAL COMPILER ERROR
(compiler file 'msc1.cpp', line 1786)
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information

  • 写回答

4条回答 默认 最新

  • 小胡不糊涂123 2023-03-22 19:26
    关注

    查了一下,是因为编译器太老了,C++的标准不全,所以这个版本的运算符重载函数是不能用友元的,语法什么的没问题

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)

报告相同问题?

问题事件

  • 已结题 (查看结题原因) 3月22日
  • 已采纳回答 3月22日
  • 创建了问题 3月20日

悬赏问题

  • ¥15 做个有关计算的小程序
  • ¥15 MPI读取tif文件无法正常给各进程分配路径
  • ¥15 如何用MATLAB实现以下三个公式(有相互嵌套)
  • ¥30 关于#算法#的问题:运用EViews第九版本进行一系列计量经济学的时间数列数据回归分析预测问题 求各位帮我解答一下
  • ¥15 setInterval 页面闪烁,怎么解决
  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化