#include <algorithm>using namespace std;int count = 0,cache[50];int f(int n){ if(n == 2) count++; if(n == 0 || n==1) return n; else if (cache[n] !=- 1) return cache[n]; else cache[n]= f(n-1) + f(n-2); return cache[n]; }
我用gcc 4.3.4这个函数,并得到以下错误:
prog.cpp: In function ‘int f(int)’:prog.cpp:38: error: reference to ‘count’ is ambiguous
在我的本地机器上(mingw32),我得到的错误是this one,虽然不是int’cache []’.
有什么原因吗
解决方法 问题是因为这里的第二行:#include <algorithm>using namespace std;
使用namespace std的行将所有名称从< algorithm>它也有一个叫做count的函数,在你的代码中你已经声明了一个变量的计数.所以这个模糊的错误.
解决方案是永远不要使用命名空间std写.这是坏坏的坏
相反,在你的代码中使用std :: cout,std :: cin,std :: endl,std :: count等等.
总结以上是内存溢出为你收集整理的c – 全局变量“count”含糊全部内容,希望文章能够帮你解决c – 全局变量“count”含糊所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)