static_cast 到不同的类型,并移动结果

static_cast to a different type, and move the result

假设我想 static_cast 类型 S 的对象键入 T 并移动分配结果:

template <typename S, typename T>
void f(T& t, S s);

我能想到四种写法:

template <typename S, typename T>
void f(T& t, S s) {
    t = static_cast<T>(s);
    t = static_cast<T>(std::move(s));
    t = static_cast<std::remove_reference_t<T>&&>(s);
    t = static_cast<std::remove_reference_t<T>&&>(std::move(s));
}

这四行中的部分或全部做同样的事情吗?首选的方法是什么?

Do some or all of these four lines do the same thing?

全部移动赋值t。第三和第四处的转换是多余的。第一个将参数复制到临时变量中,第二个移动。二是优越。虽然另外一个问题是,首先是否需要该功能。