gpt4 book ai didi

c++ - 为整数类型重载运算符 ^

转载 作者:太空狗 更新时间:2023-10-29 19:40:47 24 4
gpt4 key购买 nike

我编写了一个应用程序,其中我经常使用 math.h 库中的 pow 函数。我试图重载 operator^ 以使求幂更容易和更快。我写了这段代码:

#include <iostream>
#include <math.h>

using namespace std;

int operator^(int, int); // line 6
int main(int argc, char * argv[]) { /* ... */ }

int operator^(int a, int n) // line 21
{
return pow(a,n);
}

编译器(我在 Linux 上使用 g++)返回这些错误:

main.cpp:6:23: error: ‘int operator^(int, int)’ must have an argument of class or enumerated type main.cpp:21:27: error: ‘int operator^(int, int)’ must have an argument of class or enumerated type

最佳答案

您不能重载运算符以仅对内置类型进行运算

至少有一个参数必须是编译器错误消息中明确说明的用户定义类或枚举类型(或对其中之一的引用)。

关于c++ - 为整数类型重载运算符 ^,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10511314/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com