bug——多重定义

bug------多重定义
你的问题是在C++代码中遇到了"reference to 'data' is ambiguous"的错误。这个错误通常发生在你尝试引用一个具有多重定义的变量时。

在你的代码中,你定义了一个全局变量data,同时,C++标准库中也有一个名为data的函数模板。当你在fib函数中使用data时,编译器无法确定你是想引用全局变量data还是std::data,因此它给出了一个模糊的错误。

为了解决这个问题,你可以改变全局变量data的名称,或者在调用时明确指定你要引用的是全局变量。

解决方案一:更改全局变量名称

cpp

#include <iostream>

using namespace std;

int mod=1e9+7;

int fibData[10000]; // 更改名称

int fib(int n){

if(n==1||n==2){fibData[n]=1;return fibData[n];}

if(fibData[n]!=0)return fibData[n];

fibData[n]=fibData[n-1]+fibData[n-2];

return fibData[n];

}

int main() {

int t;

cin>>t;

for(int i=0;i<t;i++){

int n;

cin>>n;

cout<<fib[n];

}

return 0;

}

解决方案二:在调用时明确指定你要引用的是全局变量

cpp

#include <iostream>

using namespace std;

int mod=1e9+7;

int data[10000];

int fib(int n){

if(n==1||n==2){::data[n]=1;return ::data[n];} // 在前面加上 '::' 明确指定你要引用的是全局变量

if(::data[n]!=0)return ::data[n];

::data[n]=::data[n-1]+::data[n-2];

return ::data[n];

}

int main() {

int t;

cin>>t;

for(int i=0;i<t;i++){

int n;

cin>>n;

cout<<fib[n];

}

return 0;

}

相关推荐
树懒_Zz2 天前
记录 io.springfox 3.0.0 整合 spring boot 2.6.x 由于 springfox bug 引发问题
windows·spring boot·bug
每天进步一大步2 天前
webSokect安卓和web适配的Bug 适用实时语音场景
android·前端·bug·web
JWASX2 天前
【BUG记录】Apifox 参数传入 + 号变成空格的 BUG
java·bug·urlencoder·urldecoder
初遇你时动了情3 天前
解决react 路由切换,页面闪屏的bug
javascript·react.js·bug
老赵的博客3 天前
QString转const char* bug
bug
andlbds3 天前
解决PCL库中pcl::VoxelGrid降采样Bug
c++·bug
乌漆嘎嘎黑4 天前
XIO: fatal IO error 22 (Invalid argument) on X server “localhost:10.0“【小白找bug】
pytorch·python·bug·matplotlib·mobaxterm
curd_boy5 天前
【BUG】记一次context canceled的报错
golang·bug
乌漆嘎嘎黑7 天前
训练的Loss和输出突然全是nan【小白找bug】
pytorch·python·bug·llama·大模型权重文件
花开花落的个人博客7 天前
Jlink调试找出程序隐藏BUG
bug