class Test{
static double A;
static double B();
};
.cpp文件
double Test::A= 2.0; //正确的静态成员初始化
//所有的静态成员在类体外定义时都不再写static
void Test::B(double tt)
{
A= tt;
}
class Test{
static double A;
static double B();
};
.cpp文件
double Test::A= 2.0; //正确的静态成员初始化
//所有的静态成员在类体外定义时都不再写static
void Test::B(double tt)
{
A= tt;
}