System::Text::Encoding::GetString 方法
内容
[
隐藏
]Encoding::GetString(ArrayPtr<uint8_t>) method
将字节缓冲区解码为字符串。
virtual String System::Text::Encoding::GetString(ArrayPtr<uint8_t> bytes)
| 参数 | 类型 | 描述 |
|---|---|---|
| bytes | ArrayPtr<uint8_t> | Buffer 用于读取字节。 |
ReturnValue
String of decoded characters.
另见
- Class String
- Typedef ArrayPtr
- Class Encoding
- Namespace System::Text
- Library Aspose.Font for C++
Encoding::GetString(ArrayPtr<uint8_t>, int, int) method
将字节缓冲区解码为字符串。
virtual String System::Text::Encoding::GetString(ArrayPtr<uint8_t> bytes, int index, int count)
| 参数 | 类型 | 描述 |
|---|---|---|
| bytes | ArrayPtr<uint8_t> | Buffer 用于读取字节。 |
| 索引 | int | 输入缓冲区偏移量。 |
| count | int | 输入缓冲区大小。 |
ReturnValue
String of decoded characters.
另见
- Class String
- Typedef ArrayPtr
- Class Encoding
- Namespace System::Text
- Library Aspose.Font for C++
Encoding::GetString(const System::Details::ArrayView<uint8_t>&) method
将字节缓冲区解码为字符串。
virtual String System::Text::Encoding::GetString(const System::Details::ArrayView<uint8_t> &bytes)
| 参数 | 类型 | 描述 |
|---|---|---|
| bytes | const System::Details::ArrayView<uint8_t>& | Buffer 用于读取字节。 |
ReturnValue
String of decoded characters.
另见
- Class String
- Class Encoding
- Namespace System::Text
- Library Aspose.Font for C++
Encoding::GetString(const System::Details::ArrayView<uint8_t>&, int, int) method
将字节缓冲区解码为字符串。
virtual String System::Text::Encoding::GetString(const System::Details::ArrayView<uint8_t> &bytes, int index, int count)
| 参数 | 类型 | 描述 |
|---|---|---|
| bytes | const System::Details::ArrayView<uint8_t>& | Buffer 用于读取字节。 |
| 索引 | int | 输入缓冲区偏移量。 |
| count | int | 输入缓冲区大小。 |
ReturnValue
String of decoded characters.
另见
- Class String
- Class Encoding
- Namespace System::Text
- Library Aspose.Font for C++
Encoding::GetString(System::Details::StackArray<uint8_t, N>&) method
将字节缓冲区解码为字符串。
template<std::size_t> String System::Text::Encoding::GetString(System::Details::StackArray<uint8_t, N> &bytes)
| 参数 | 类型 | 描述 |
|---|---|---|
| bytes | System::Details::StackArray<uint8_t, N>& | Buffer 用于读取字节。 |
ReturnValue
String of decoded characters.
另见
- Class String
- Class Encoding
- Namespace System::Text
- Library Aspose.Font for C++
Encoding::GetString(System::Details::StackArray<uint8_t, N>, int, int) method
将字节缓冲区解码为字符串。
template<std::size_t> String System::Text::Encoding::GetString(System::Details::StackArray<uint8_t, N> bytes, int index, int count)
| 参数 | 类型 | 描述 |
|---|---|---|
| bytes | System::Details::StackArray<uint8_t, N> | Buffer 用于读取字节。 |
| 索引 | int | 输入缓冲区偏移量。 |
| count | int | 输入缓冲区大小。 |
ReturnValue
String of decoded characters.
另见
- Class String
- Class Encoding
- Namespace System::Text
- Library Aspose.Font for C++
Encoding::GetString(uint8_t *, int) method
将字节缓冲区解码为字符串。
virtual String System::Text::Encoding::GetString(uint8_t *bytes, int byte_count)
| 参数 | 类型 | 描述 |
|---|---|---|
| bytes | uint8_t * | Buffer 用于读取字节。 |
| byte_count | int | 输入缓冲区大小。 |
ReturnValue
String of decoded characters.
另见
- Class String
- Class Encoding
- Namespace System::Text
- Library Aspose.Font for C++