鱼C论坛

 找回密码
 立即注册
查看: 1119|回复: 2

以下代码错在哪

[复制链接]
发表于 2023-12-3 19:55:25 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
#include<iostream>
using namespace std;
class complex
{
        double real, image;
public:
       
        complex(double r = 0, double i = 0)
        {
                real = r;
                image = i;
        }
        /*complex add(const complex& c)
        {
                complex temp;
                temp.real = this->real + c.real;
                temp.image = this->image + c.image;
                return temp;
        }*/
       
        void show()
        {
                if (image > 0)
                {
                        if (image == 1)
                        {
                                cout << real << "+" << "i" << endl;
                        }
                        else
                                cout << real << "+" << image << "i" << endl;
                }
                else if (image < 0)
                {
                        if (image == -1)
                        {
                                cout << real << "-" << endl;
                        }
                        else
                                cout << real << "-" << image << "i" << endl;
                }
        }
        friend complex operator+(const complex& c2)
};
complex operator+(const complex& c2)
{
        complex temp;
        temp.real = real + c2.real;
        temp.image = image + c2.image;
        return temp;
}
int main()
{
        /*complex c1(1, 1), c2(2, 4);
        c1.show();
        c2.show();
        complex c3 = c1.add(c2);
        c3.show();
        return 0;*/
        complex c1(1,1), c2(2, 4);
        c1.show();
        c2.show();
        complex c3 = c1 + c2;
        c3.show();
        return 0;

}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2023-12-3 19:55:48 | 显示全部楼层
在代码中有几个问题:
1. 在头文件的引用部分遗漏了iostream。应该加入#include <iostream>。
2. 类名为complex与C++标准库中的complex冲突。应该避免使用与标准库相同的名称。
3. 在show函数中,cout << "image" << image;后缺少分号。

以下是修改后的代码:

#include <iostream>
using namespace std;

class ComplexNumber
{
    double real, image;
public:
       
    ComplexNumber(double r = 0, double i = 0)
    {
        real = r;
        image = i;
    }
       
    ComplexNumber add(const ComplexNumber& c)
    {
        ComplexNumber temp;
        temp.real = this->real + c.real;
        temp.image = this->image + c.image;
        return temp;
    }
       
    void show()
    {
        if (image > 0)
        {
            if (image == 1)
            {
                cout << "real" << real << "+i" << endl;
            }
            else
            {
                cout << "real" << real << "+i" << image << endl;
            }
        }
        else if (image == 0)
        {
            cout << "real" << real << endl;
        }
        else
        {
            if (image == -1)
            {
                cout << "real" << real << "-i" << endl;
            }
            else
            {
                cout << "real" << real << "-i" << -image << endl;
            }
        }
    }
};

int main()
{
    ComplexNumber c1(1, 2);
    ComplexNumber c2(3, 4);
    ComplexNumber c3;
   
    c3 = c1.add(c2);
    c3.show();
   
    return 0;
}

以上回复来自 -- ChatGPT(FishC官方接口),如未能正确解答您的问题,请继续追问。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2023-12-3 20:26:40 | 显示全部楼层
你的运算符重载函数operator+写的有错误。在这个函数中,你试图访问real和image,但是这两个变量在这个函数的作用域中是未定义的。你需要让函数接受两个参数,即两个要相加的复数。让我们修复这个问题:

1. 在类中声明运算符重载函数operator+为友元函数,并让它接受两个参数:
friend complex operator+(const complex& c1, const complex& c2);

2. 然后在类外实现这个函数:
complex operator+(const complex& c1, const complex& c2)
{
    complex temp;
    temp.real = c1.real + c2.real;
    temp.image = c1.image + c2.image;
    return temp;
}

现在这段代码应该可以正确地实现两个复数的加法了。同时,你的show函数可能会在实数部分为0时产生不正确的输出。它也需要进行一些修改以处理这种情况。

提示:确保在你的类的方法中对所有可能的情况进行完全的测试。有用请设置最佳答案
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-12-23 03:15

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表