System::MakeObject 方法
System::MakeObject(Args&&…) method
在堆上创建对象并返回指向它的共享指针。
template<class T,class ...> std::enable_if<!IsSmartPtr<T>::value, SmartPtr<T>>::type System::MakeObject(Args &&... args)
| 参数 | 描述 |
|---|---|
| T | 要实例化的类。 |
| 参数 | 构造函数参数的类型。 |
| 参数 | 类型 | 描述 |
|---|---|---|
| args | Args\&&… | 构造函数参数。 |
ReturnValue
SmartPtr to newly created object, always in shared mode.
另见
- Class SmartPtr
- Namespace System
- Library Aspose.Font for C++
System::MakeObject(Args&&…) method
在堆上创建对象并返回指向它的共享指针。
template<class T,class ...> std::enable_if<IsSmartPtr<T>::value, T>::type System::MakeObject(Args &&... args)
| 参数 | 描述 |
|---|---|
| T | SmartPtr 到要实例化的类。 |
| 参数 | 构造函数参数的类型。 |
| 参数 | 类型 | 描述 |
|---|---|---|
| args | Args\&&… | 构造函数参数。 |
ReturnValue
SmartPtr to newly created object, always in shared mode.
另见
- Namespace System
- Library Aspose.Font for C++