序列化 C++函子

发布于 2024-12-10 02:50:26 字数 389 浏览 0 评论 0原文

你能保存 C++ lambda/函子的函数体吗?

例如,假设您有

light0->lightFunction = []( real tEl, real pAz ) -> Vector {

  return Vector(
    // red is up lobe
    std::max<real>( 0., 5*cos(tEl)-4 ),

    // green lower lobe
    std::max<real>( 0., -4*sin(tEl-PI)*cos(pAz-2.5)-3),

    0. ) ;
} ;

并且想要保存函数体,以便稍后可以加载它(而不是总是必须对其进行硬编码)。

你能做到吗?

Can you save the function body of a C++ lambda/functor?

For example, say you have

light0->lightFunction = []( real tEl, real pAz ) -> Vector {

  return Vector(
    // red is up lobe
    std::max<real>( 0., 5*cos(tEl)-4 ),

    // green lower lobe
    std::max<real>( 0., -4*sin(tEl-PI)*cos(pAz-2.5)-3),

    0. ) ;
} ;

And you want to save the function body, so you can load it later (instead of always having to hard code it).

Can you do it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

听闻余生 2024-12-17 02:50:26

这个 lambda 没有状态(不是闭包),所以它是一个普通的函数。

因此,保存它与保存任何函数都是同样的问题。一般来说这是不可能的,但只要您将其加载回完全相同的进程,在实践中就有可能,只需将函数指针重新转换为 char * 并读取足够数量的字节。不过,这将是高度不可移植的,并且可能在某些体系结构或某些编译器上根本不起作用。

再次强调:没有符合标准的方法将代码视为数据

另一方面,有一些符号表达式库允许使用普通代码语法捕获表达式树,但是您根本不处理函子(没有代码,只有数据)。

This lambda doesn't have state (not a closure), so it's an ordinary function.

Saving it therefore is the same problem as saving any function. It's not possible in general, but as long as you're loading it back into the exact same process, it may be possible in practice, just by reinterpret_cast-ing the function pointer to a char* and reading a sufficient number of bytes. This will be highly non-portable, though, and may not work at all on some architectures or with some compilers.

Again: There is no standard-compliant way to treat code as data.

On the other hand, there are symbolic expression libraries that allow capture of an expression tree using ordinary code syntax, but then you're not dealing with a functor at all (there is no code, only data).

离线来电— 2024-12-17 02:50:26

为了补充 Ben 的答案,我现在这样做:

vector< function <Vector ( real tEl, real pAz )> > funcs ;
funcs.resize( 5 ) ;
// write functions here
funcs[ 0 ] = []( real tEl, real pAz ) -> Vector {
  return Vector(
    // red is up lobe
    std::max<real>( 0., 5*cos(tEl)-4 ),

    // green lower lobe
    std::max<real>( 0., -4*sin(tEl-PI)*cos(pAz-2.5)-3),

    0. ) ;

funcs[ 1 ] = ...

然后在保存时,我只保存一个整数,并在加载时将整数指向源代码文件中的正确函数。

To add to Ben's answer, I'm now doing this:

vector< function <Vector ( real tEl, real pAz )> > funcs ;
funcs.resize( 5 ) ;
// write functions here
funcs[ 0 ] = []( real tEl, real pAz ) -> Vector {
  return Vector(
    // red is up lobe
    std::max<real>( 0., 5*cos(tEl)-4 ),

    // green lower lobe
    std::max<real>( 0., -4*sin(tEl-PI)*cos(pAz-2.5)-3),

    0. ) ;

funcs[ 1 ] = ...

Then when saving, I only save an integer, and at load, point the integer to the correct function in the source code file.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文