System::Func::operator= 方法

Func::operator=(const Func&) method

复制赋值。

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

ReturnValue

对 this 的引用。

另见

Func::operator=(Func&&) method

移动赋值。

Func & System::Func<Args>::operator=(Func &&other) noexcept
参数类型描述
otherFunc&&Func 委托以移动到当前对象。状态可能会改变。

ReturnValue

对 this 的引用。

另见