gpt4 book ai didi

c++ - iter_swap 的意义何在?

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

我只是想知道,为什么有人会写这个:

std::iter_swap(i, k);

而不是这个?

std::swap(*i, *k);   // saved a few keystrokes!

然后我研究了 iter_swap 的实现,当然它只使用 swap 而不是 std::swap 因为我们是无论如何,已经在 namespace std 中了。这就引出了下一个问题:

为什么会有人写这个:

using std::swap;
swap(a, b);

而不是这个?

std::iter_swap(&a, &b);   // saved an entire line of code!

我在这里忽略了任何重要的差异/问题吗?

最佳答案

来自 SGI 文档 (here):

[1] Strictly speaking, iter_swap is redundant. It exists only for technical reasons: in some circumstances, some compilers have difficulty performing the type deduction required to interpret swap(*a, *b).

关于c++ - iter_swap 的意义何在?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13991909/

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