gpt4 book ai didi

c++ - 将类作为参数传递 c++

转载 作者:行者123 更新时间:2023-11-28 01:46:47 25 4
gpt4 key购买 nike

与其这样做,不如继续为所有内容编写冗余代码:

Molecule::Molecule(Hydrogenyx& h){
//some code
}

Molecule::Molecule(Carbonyx& c){
//same code as hydro
}

Molecule::Molecule(Sulphuryx& s){
//same code
}

有没有办法让它看起来像这样?:

Molecule::Molecule(x){
//code that can apply to all
}

最佳答案

is there a way I can just make it so it can look like this?:

当然。您可以使用成员函数模板。

声明:

template <typename T> Molecule(T& t);

实现:

template <typename T>
Molecule::Molecule(T& t){
// The common code.
}

关于c++ - 将类作为参数传递 c++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44743845/

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