System::Buffer::ByteLength method
内容
[
隐藏
]Buffer::ByteLength(const SharedPtr<Array<T>>&) method
确定指定数组中所有元素占用的字节数。
template<class T> static int System::Buffer::ByteLength(const SharedPtr<Array<T>> &array)
| Parameter | 描述 |
|---|---|
| T | 数组中元素的类型 |
| Parameter | Type | 描述 |
|---|---|---|
| array | const SharedPtr<Array<T>>& | 数组 |
ReturnValue
指定数组中所有元素占用的字节数
另见
- Typedef SharedPtr
- Class Array
- Class Buffer
- Namespace System
- Library Aspose.Page for C++
Buffer::ByteLength(const System::Details::ArrayView<T>&) method
确定指定数组中所有元素占用的字节数。
template<class T> static int System::Buffer::ByteLength(const System::Details::ArrayView<T> &array)
| Parameter | 描述 |
|---|---|
| T | 数组视图中元素的类型 |
| Parameter | Type | 描述 |
|---|---|---|
| array | const System::Details::ArrayView<T>& | 数组视图 |
ReturnValue
指定数组视图中所有元素占用的字节数
另见
- Class Buffer
- Namespace System
- Library Aspose.Page for C++
Buffer::ByteLength(const System::Details::StackArray<T, N>&) method
确定指定数组中所有元素占用的字节数。
template<class T,std::size_t> static int System::Buffer::ByteLength(const System::Details::StackArray<T, N> &array)
| Parameter | 描述 |
|---|---|
| T | 栈数组中元素的类型 |
| N | 堆栈数组的大小 |
| Parameter | Type | 描述 |
|---|---|---|
| array | const System::Details::StackArray<T, N>& | 栈数组 |
ReturnValue
指定栈数组中所有元素占用的字节数
另见
- Class Buffer
- Namespace System
- Library Aspose.Page for C++