这个C++代码为什么编译的时候提示“无法解析的外部符号”?
//那现在有一群人开会每两个人之间必须握一次手共握手67次问有多少人//错误信息:errorLNK2001:无法解析的外部符号"public:staticunsigned...
//那 现在 有一群人开会 每两个人之间必须握一次手 共握手67次 问有多少人
//错误信息:error LNK2001: 无法解析的外部符号 "public: static unsigned int boole::n" (?n@boole@@2IA)
#include <stdio.h>
#include <conio.h>
class boole
{
public:
static unsigned int n;
bool *bp;
boole()
{
bp=new bool[n];
unsigned int i=0;
for(i=0;i<n;i++)
{
bp[i]=true;
}
}
~boole()
{
delete []bp;
}
};
unsigned int sum_f(unsigned int my,unsigned int n,boole *p)
{
unsigned int sum=0;//握手次数
unsigned int i=0;
for(i=0;i<n;i++)
{
if((my!=i)&&(p[my].bp[i]))//判断我手的人是不是自己,以及是否与该人重复握手
{
p[i].bp[my]=false;//i人和my人已经握手,做标记
p[my].bp[i]=false;//my人已经和i人握手,做标记
sum++;
}
}
return sum;
}
int main (void)
{
boole *p=NULL;
unsigned int sum=0;//握手次数
unsigned int ps=0;//人数
unsigned int i=0,n=0;
boole::n=0;
while(sum<1)
{
n++;
sum=0;
boole::n=n;
p=new boole[n];
for(i=0;i<n;i++)
{
sum=sum+sum_f(i,n,p);
}
delete []p;
p=NULL;
}
printf("%d",n);
getch();
return 0;
} 展开
//错误信息:error LNK2001: 无法解析的外部符号 "public: static unsigned int boole::n" (?n@boole@@2IA)
#include <stdio.h>
#include <conio.h>
class boole
{
public:
static unsigned int n;
bool *bp;
boole()
{
bp=new bool[n];
unsigned int i=0;
for(i=0;i<n;i++)
{
bp[i]=true;
}
}
~boole()
{
delete []bp;
}
};
unsigned int sum_f(unsigned int my,unsigned int n,boole *p)
{
unsigned int sum=0;//握手次数
unsigned int i=0;
for(i=0;i<n;i++)
{
if((my!=i)&&(p[my].bp[i]))//判断我手的人是不是自己,以及是否与该人重复握手
{
p[i].bp[my]=false;//i人和my人已经握手,做标记
p[my].bp[i]=false;//my人已经和i人握手,做标记
sum++;
}
}
return sum;
}
int main (void)
{
boole *p=NULL;
unsigned int sum=0;//握手次数
unsigned int ps=0;//人数
unsigned int i=0,n=0;
boole::n=0;
while(sum<1)
{
n++;
sum=0;
boole::n=n;
p=new boole[n];
for(i=0;i<n;i++)
{
sum=sum+sum_f(i,n,p);
}
delete []p;
p=NULL;
}
printf("%d",n);
getch();
return 0;
} 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询