如何在 C++11 中将元组转换为字节数组

How to convert tuple to byte array in c++11(如何在 C++11 中将元组转换为字节数组)
本文介绍了如何在 C++11 中将元组转换为字节数组的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要编写一个函数来将元组转换为字节数组.元组的类型可能包括int、long、double、std::string、char*等.元组的大小和类型是任意的,比如

I need to write a function to convert tuple to byte array. The type of tuple may include int, long, double, std::string, char*,etc. The size and type of tuple are arbitrary, such as

std:tuple<string, int, double> t1("abc", 1, 1.3);

std:tuple<char*, int, int, float, double, string> t2("abc", 1, 2, 1.3, 1.4, "hello");

我想使用这些元组作为输入,字节数组作为返回值.我该怎么办 ?

I want use these tuple as input, and the byte array as return value. What should I do ?

推荐答案

还有精彩的C++ API 用于 消息包,它原生支持元组

There is also the brilliant C++ API for message pack which supports tuples natively

#include <string>
#include <sstream>
#include <tuple>

#include <msgpack.hpp>

int main() {
    auto t = std::make_tuple("1", 1, 1.0);
    auto buffer = std::stringstream{};

    // easy peezy
    msgpack::pack(buffer, t);
    auto tuple_as_string = buffer.str();
}

这篇关于如何在 C++11 中将元组转换为字节数组的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Rising edge interrupt triggering multiple times on STM32 Nucleo(在STM32 Nucleo上多次触发上升沿中断)
How to use va_list correctly in a sequence of wrapper functions calls?(如何在一系列包装函数调用中正确使用 va_list?)
OpenGL Perspective Projection Clipping Polygon with Vertex Outside Frustum = Wrong texture mapping?(OpenGL透视投影裁剪多边形,顶点在视锥外=错误的纹理映射?)
How does one properly deserialize a byte array back into an object in C++?(如何正确地将字节数组反序列化回 C++ 中的对象?)
What free tiniest flash file system could you advice for embedded system?(您可以为嵌入式系统推荐什么免费的最小闪存文件系统?)
Volatile member variables vs. volatile object?(易失性成员变量与易失性对象?)