如何使用const字段复制成员

时间:2015-06-23 20:53:04

标签: c++ class const

我发现此代码存在问题:

struct Example
{
    const int k;
    Example(int k) : k(k) {}
};

struct Board
{
    Example table[4];
    Board() {} // ???
};

我的问题是如何初始化表变量。如果我提供默认构造函数,我将无法更改此const字段。有解决方法吗?我也不能依赖拷贝构造函数。

2 个答案:

答案 0 :(得分:4)

你的意思是以下几点吗?

#include <iostream>

int main()
{
    struct Example
    {
        const int k;
        Example(int k) : k(k) {}
    };

    struct Board
    {
        Example table[4];
        Board() : table { 1, 2, 3, 4 } {} // ???
    };

    Board b;

    for ( const auto &e : b.table ) std::cout << e.k << ' ';
    std::cout << std::endl;
}

另一种方法是将表定义为静态数据成员,前提是它将以相同的方式为类的所有对象初始化。例如

struct Example
{
    const int k;
    Example(int k) : k(k) {}
};

struct Board
{
    static Example table[4];
    Board() {} // ???
};

Example Board::table[4] = { 1, 2, 3, 4 };

答案 1 :(得分:0)

使用构造函数Board(): table{9, 8, 7, 6} {}

直接初始化数组中的每个元素