gpt4 book ai didi

c++ - 来自 std::vector 的未格式化流输入

转载 作者:行者123 更新时间:2023-11-30 04:28:52 24 4
gpt4 key购买 nike

我正在使用 boost::iostream 库将 posix 管道包装到 gnuplot。要将二进制内联数据发送到 gnuplot,我目前正在做这样的事情

std::vector<double> d = test_data();
Gnuplot plt; //custom gnuplot class derived from boost::iostream::stream

plt << "plot '-' binary format='%double' notitle\n"
plt.write( (char*)( &c.front() ), sizeof(double)*c.size() ); // send binary data

它有效,但我想摆脱 .write 并使用迭代器接口(interface)来允许,例如一个 std::list 作为源。我知道 std::ostreambuf_iterator 允许无格式输入但简单地使用 std::copy 显然不起作用。

最佳答案

这是一个简单的包装器模板来写出范围:

#include <memory>
#include <iterator>

template <typename FwdIter>
write_range(Gnuplot & gp, FwdIter it, FwdIter end)
{
typedef typename std::iterator_traits<FwdIter>::value_type type;
for ( ; it != end; ++it)
{
gp.write(reinterpret_cast<char const *>(std::addressof(*it)), sizeof(type));
}
}

用法:write_range(gp, mylist.begin(), mylist.end());

关于c++ - 来自 std::vector<double> 的未格式化流输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9774997/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com