System::Func::operator= 方法

Func::operator=(const Func&) method

复制赋值。

Func & System::Func<Args>::operator=(const Func &other)
ParameterType描述
otherconst Func&Func 委托以复制到当前对象。

ReturnValue

对本对象的引用。

另见

Func::operator=(Func&&) method

移动赋值。

Func & System::Func<Args>::operator=(Func &&other) noexcept
ParameterType描述
otherFunc&&Func 委托以移动到当前对象。状态可以被更改。

ReturnValue

对本对象的引用。

另见