gpt4 book ai didi

模板类型的 C++ 运行时决策

转载 作者:塔克拉玛干 更新时间:2023-11-03 08:22:00 25 4
gpt4 key购买 nike

 template<typename T>
class A
{ std::vector<T> v;
.... //other variables
void op1();
void op2();
... //other operations
};

int main()
{
string type;
cout<<"which type do you need?"
cin>>type;
if(type=="int")
A<int> ai;
else A<float> af;

return 0;
}

在这两个 block 中,我必须执行相同的指令流。例如:

 ai.op1();
ai.op2();
...

如果它们只有两个,我可以写两次,但这是一个有很多条件的糟糕解决方案。有没有办法在“if-else”之后为所选类型执行一次此操作?我不能说将选择哪种类型?我该怎么办?

最佳答案

您可以使用函数模板:

template <typename T>
void do_stuff()
{
A<T> ai;
ai.op1();
ai.op2();
}

然后

int main()
{
std::string type;
std::cout << "which type do you need?"
std::cin >> type;

type == "int" ? do_stuff<int>() : do_stuff<float>();
}

关于模板类型的 C++ 运行时决策,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24001349/

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