c++ - 下面的静态数据成员的声明和定义有错误吗?请解释原因。
PHP中文网
PHP中文网 2017-04-17 12:08:49
0
1
624

这是书上的一道题,但不知道怎么回答


下面的静态数据成员的声明和定义有错误吗?请解释原因。

// example.h
class Example{
public:
  static double rate = 6.5;
  static const int vecSize = 20;
  static vector<double> vec(vecSize);
};
//example.c
#include "example.h"
double Example::rate;
vector<double> Example::vec;

目前我改成了这样,但是vector那一行不知道是什么问题,怎么改?

// example.h
class Example {
public:
    static double rate;
    static const int vecSize = 20;
    static vector<double> vec(vecSize);
};
//example.c
#include "example.h"
double Example::rate=6.5;
vector<double> Example::vec;
PHP中文网
PHP中文网

认证0级讲师

Antworte allen(1)
左手右手慢动作

静态成员的类内初始化只接受整数类型..

Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage
Über uns Haftungsausschluss Sitemap
Chinesische PHP-Website:Online-PHP-Schulung für das Gemeinwohl,Helfen Sie PHP-Lernenden, sich schnell weiterzuentwickeln!