gpt4 book ai didi

c++ - "fetch_and_store"是什么意思?

转载 作者:太空宇宙 更新时间:2023-11-04 05:51:59 26 4
gpt4 key购买 nike

我正在将 Linux C++ 代码移植到 Windows 中。但我找不到函数 fetch_and_store 的替代品。这是代码:

size_t fn(size_t index)
{
// do something here
return fetch_and_store(array[index], size_t(0));
// the type of array is size_t*
}

实际上,我对 gcc 编译器并不熟悉。这可能是我在 stackoverflow 中的第一个问题。如果我做错了什么,请告诉我。谢谢。

最佳答案

您必须告诉我们该函数来自哪里(什么库、 header 等),因为它不是 C++ 标准库的一部分。

仅从名称来看,听起来 C++ 标准库中的等效项是 std::atomic::exchange

T exchange( T desired, std::memory_order order = std::memory_order_seq_cst );

Atomically replaces the underlying value with desired. The operation is read-modify-write operation. Memory is affected according to the value of order.

关于c++ - "fetch_and_store"是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31027474/

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