gpt4 book ai didi

c++ - 在 C++ 中的函数定义中混合指针和引用

转载 作者:IT老高 更新时间:2023-10-28 22:23:25 25 4
gpt4 key购买 nike

我有一个函数,它有两个类实例作为参数:

void cookPasta(const Tomato& tomato, const Meat* meat)
{
if (meat != nullptr)
cookPastaWithMeat(tomato, *meat);
else
cookPastaWithoutMeat(tomato);
}

如函数所示,Tomato 的实例始终是必需的,而 Meat 是可选的,并且可以传递 nullptr。我这样做是为了允许调用 cookPasta 函数,即使用户从未声明过 Meat 类的实例。

在函数签名中混合引用和指针是不好的做法吗?

最佳答案

这种方法丢失的一件事是可能会传入一个临时的Meat,因为它的地址无法被获取。

为什么不使用重载,只需重命名 cookPastaWithMeatcookPastaWithoutMeat

void cookPasta(const Tomato& tomato, const Meat& meat);
void cookPasta(const Tomato& tomato);

关于c++ - 在 C++ 中的函数定义中混合指针和引用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31807775/

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