gpt4 book ai didi

c++ - 在结构中声明常量变量导致我出现此错误非静态成员引用必须相对于特定对象

转载 作者:行者123 更新时间:2023-11-30 02:13:39 28 4
gpt4 key购买 nike

你好,我正在尝试在结构中声明一个数组,当我将大小声明为常量变量时​​,它向我显示此错误

非静态成员引用必须相对于特定对象

如果我在结构范围之外声明常量变量,错误就会消失。

这是我的代码:

  struct Student{

string name;
string birthday;
int studyYear;
string Faculty;
string Department;
const int MaxNrOfCrs = 10; // here is my error
const int Grade = 1; // The same error appears here also
Course crs[MaxNrOfCrs][Grade];
bool payment;
};

但是当我尝试从 struct Student 范围中取出这两个常量时,错误不再出现

  const int MaxNrOfCrs = 10;  // The error vanishes here
const int Grade = 1; // The same error vanishes here also

struct Student{

string name;
string birthday;
int studyYear;
string Faculty;
string Department;
Course crs[MaxNrOfCrs][Grade];
bool payment;
};

最佳答案

即使一个类成员被声明为 const 并带有默认值,它仍然可以在类的每个单独实例中通过构造函数或在本例中使用一些不同的值来构造,或者在这种情况下,聚合初始化,也许。

暂时删除无效的数组声明,这里是一些有效的 C++:

#include <string>
using namespace std;

struct Student{

string name;
string birthday;
int studyYear;
string Faculty;
string Department;
const int MaxNrOfCrs = 10; // here is my error
const int Grade = 1; // The same error appears here also
bool payment;
};

Student s{"John", "1/1/2000", 2017, "Engineering", "Mechanical",
20, 5, true};

因此,这最终构建了一个包含 20 的 MaxNrOfCrs 类实例。

那么,您建议类数组成员的大小在这里是多少?显然,类的每个实例都不能不同。

这里,const 仅表示此类成员构造此类的实例后是常量。而且它可以用任何值构造,因此你不能真正使用这个类成员来指定数组的不可变大小(还有一些其他原因)。

在另一种情况下,您声明了一个全局const int。故事结局。没有什么可以改变这一点。因此,您可以使用它来指定某些数组的大小。

关于c++ - 在结构中声明常量变量导致我出现此错误非静态成员引用必须相对于特定对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59009858/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com