System::StaticCast 方法

System::StaticCast(const TFrom&) method

对非指针对象执行静态转换。

template<typename TTo,typename TFrom> std::enable_if<!std::is_same<TFrom, System::String>::value &&!IsExceptionWrapper<TFrom>::value &&!IsSmartPtr<TFrom>::value &&!std::is_arithmetic<TFrom>::value, TTo>::type System::StaticCast(const TFrom &obj)
参数描述
TTo目标类型。
TFrom源类型。
参数类型描述
objconst TFrom&源对象。

ReturnValue

如果允许转换,则返回转换结果。

Deprecated

保留用于向后兼容。请改用 ExplicitCast。

另见

System::StaticCast(const TFrom&) method

Exception 对象执行 static cast。

template<typename TTo,typename TFrom> std::enable_if<IsExceptionWrapper<TFrom>::value &&IsExceptionWrapper<TTo>::value &&(std::is_convertible<TTo, TFrom>::value||std::is_base_of<TTo, TFrom>::value), TTo>::type System::StaticCast(const TFrom &obj)
参数描述
TTo目标 Exception 类型。
TFromException 类型。
参数类型描述
objconst TFrom&源指针。

ReturnValue

如果允许转换,则返回转换结果。

Deprecated

保留用于向后兼容。请改用 ExplicitCast。

另见

System::StaticCast(const TFrom *) method

针对算术类型的特化。

template<typename TTo,typename TFrom> std::enable_if<std::is_arithmetic<TFrom>::value, TTo>::type System::StaticCast(const TFrom *value)

另见

System::StaticCast(SmartPtr<TFrom> const&) method

SmartPtr 对象执行 static cast。

template<typename TTo,typename TFrom> std::enable_if<!IsExceptionWrapper<TTo>::value, typenameCastResult<TTo>::type>::type System::StaticCast(SmartPtr<TFrom> const &obj)
参数描述
TTo目标指向对象的类型。
TFrom源指向对象的类型。
参数类型描述
objSmartPtr<TFrom> const&源指针。

ReturnValue

如果允许转换,则返回转换结果。

Deprecated

保留用于向后兼容。请改用 ExplicitCast。

另见

System::StaticCast(SmartPtr<TFrom>) method

对对象执行 static cast,以转换为 Exception 对象。

template<typename TTo,typename TFrom> std::enable_if<std::is_same<System::Object, TFrom>::value &&IsExceptionWrapper<TTo>::value, TTo>::type System::StaticCast(SmartPtr<TFrom> obj) noexcept
参数描述
TTo目标 Exception 类型。
TFromObject 类型。
参数类型描述
objSmartPtr<TFrom>源指针。

ReturnValue

如果允许转换,则返回转换结果。

Deprecated

保留用于向后兼容。请改用 ExplicitCast。

另见

System::StaticCast(std::nullptr_t) method

对空对象执行静态转换。

template<typename TTo> CastResult<TTo>::type System::StaticCast(std::nullptr_t)
参数描述
TTo目标指向对象的类型。

ReturnValue

nullptr。

Deprecated

保留用于向后兼容。请改用 ExplicitCast。

另见

System::StaticCast(TFrom) method

针对算术类型的特化。

template<typename TTo,typename TFrom> std::enable_if<std::is_arithmetic<TFrom>::value, TTo>::type System::StaticCast(TFrom value)

另见

System::StaticCast(TTo) method

处理从 StringString 的转换。

template<typename TTo> std::enable_if<std::is_same<TTo, System::String>::value, TTo>::type System::StaticCast(TTo value)

另见

System::StaticCast(WeakPtr<TFrom> const&) method

WeakPtr 对象执行 static cast。

template<typename TTo,typename TFrom> CastResult<TTo>::type System::StaticCast(WeakPtr<TFrom> const &obj)
参数描述
TTo目标指向对象的类型。
TFrom源指向对象的类型。
参数类型描述
objWeakPtr<TFrom> const&源指针。

ReturnValue

如果允许转换,则返回转换结果。

Deprecated

保留用于向后兼容。请改用 ExplicitCast。

另见