Appearance
operator++
cppref 直接说了 operator++()(前置)等价于 fetch_add(1) + 1,operator++(int)(后置)等价于 fetch_add(1)。
operator++()
fetch_add(1) + 1
operator++(int)
fetch_add(1)
所以答案是 fetch_add 覆盖了 operator++ 的场景还提供了额外功能(指定内存序)。