gpt4 book ai didi

c++ - 将构造对象但不是构造函数的方法

转载 作者:太空宇宙 更新时间:2023-11-04 16:00:33 25 4
gpt4 key购买 nike

我正在研究 C++ 中的不可变结构。假设我想将 mathematics 移到 zippy 类中 - 这可能吗?它构造了一个 zippy,但该函数不能是构造函数。一定要住在课外吗?

struct zippy
{
const int a;
const int b;
zippy(int z, int q) : a(z), b(q) {};
};

zippy mathematics(int b)
{
int r = b + 5;
//imagine a bunch of complicated math here
return zippy(b, r);
}

int main()
{
zippy r = mathematics(3);
return 0;
}

最佳答案

在这种情况下,您通常做的是公开一个返回新对象的公共(public)静态方法:

struct zippy
{
static zippy mathematics(int b);
const int a;
const int b;
zippy(int z, int q) : a(z), b(q) {};
};

zippy zippy::mathematics(int b)
{
int r = b + 5;
//imagine a bunch of complicated math here
return zippy(b, r);
}

此处命名不当,但您明白了。

无需 zippy 实例即可调用并创建新的 zippy 对象:

zippy newZippy = zippy::mathematics(42);

关于c++ - 将构造对象但不是构造函数的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45282334/

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