System::Buffer::GetByte 方法

Buffer::GetByte(const SharedPtr<Array<T>>&, int) method

将指定的类型化数组解释为原始字节数组,并检索在指定字节偏移处的字节值。

template<typename T> static uint8_t System::Buffer::GetByte(const SharedPtr<Array<T>> &array, int index)
Parameter描述
T数组中元素的类型
ParameterType描述
arrayconst SharedPtr<Array<T>>&目标数组
索引int要检索的字节的零基偏移量

ReturnValue

指定索引处的字节值

另见

Buffer::GetByte(const System::Details::ArrayView<T>&, int) method

将指定的类型化数组解释为原始字节数组,并检索在指定字节偏移处的字节值。

template<typename T> static uint8_t System::Buffer::GetByte(const System::Details::ArrayView<T> &array, int index)
Parameter描述
T数组视图中元素的类型
ParameterType描述
arrayconst System::Details::ArrayView<T>&目标数组视图
索引int要检索的字节的零基偏移量

ReturnValue

指定索引处的字节值

另见

Buffer::GetByte(const System::Details::StackArray<T, N>&, int) method

将指定的类型化数组解释为原始字节数组,并检索在指定字节偏移处的字节值。

template<typename T,std::size_t> static uint8_t System::Buffer::GetByte(const System::Details::StackArray<T, N> &array, int index)
Parameter描述
T栈数组中元素的类型
N堆栈数组的大小
ParameterType描述
arrayconst System::Details::StackArray<T, N>&目标堆栈数组
索引int要检索的字节的零基偏移量

ReturnValue

指定索引处的字节值

另见