gpt4 book ai didi

c++ - 扩展在 if/else 序列中初始化的变量的范围

转载 作者:太空狗 更新时间:2023-10-29 19:37:53 36 4
gpt4 key购买 nike

我正在编写一段代码,其中我想根据条件使用类的不同构造函数。到目前为止,我已经使用 ifelse 语句来构造对象,但是实例随后被“困”在括号中,无法在代码中进一步使用.

这是它在代码中的样子:

if (my_boolean){
MyClass my_object(arg1); //calling a first constructor
}
else {
MyClass my_object(arg1,arg2); //calling another constructor
}
//more code using my_object

到目前为止,我尝试使用 static 关键字但没有成功。是否有一种通用的方法可以有条件地使用不同的构造函数而无需重新定义构造函数?

最佳答案

尝试以下:)

MyClass my_object = my_boolean ? MyClass(arg1) : MyClass(arg1,arg2);

请注意,即使该类没有默认构造函数,此代码也能正常工作。

这是一个示范性的例子

#include <iostream> 
#include <cstdlib>
#include <ctime>

int main ()
{
struct Point
{
Point( int x ) : x( x ) {}
Point( int x, int y ) : x( x ), y( y ) {}
int x = 0;
int y = 0;
};

std::srand( ( unsigned )std::time( 0 ) );

Point p = std::rand() % 2 ? Point( 1 ) : Point( 1, 2 );

std::cout << "p.x = " << p.x << ", p.y = " << p.y << std::endl;

return 0;
}

我得到了以下输出

p.x = 1, p.y = 2

你得到了什么输出? :)

关于c++ - 扩展在 if/else 序列中初始化的变量的范围,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24638158/

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