创建一个简单的脚本“语言”; - 类似 VARIANT 的值类型

发布于 2024-08-17 07:52:27 字数 163 浏览 2 评论 0原文

对于用C++开发的规则引擎来说,核心特性之一就是值类型。到目前为止,我所拥有的有点像 COM 风格的 VARIANT - 每个值都知道它的类型。类型转换有一些规则,但有点混乱。

我想知道是否有很好的插入值类可以用来解决这个问题,而不需要我使用整个预构建的系统。例如,也许 boost 有什么东西?

For a rules engine developed in C++, one of the core features is the value type. What I have so far is a bit like a COM-style VARIANT - each value knows its type. There are some rules for type conversion but it's a bit messy.

I wondered if there are nice drop-in value classes I could use which solve this, without requiring me to use a whole pre-built system. For instance maybe boost has something?

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

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

发布评论

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

评论(1

别忘他 2024-08-24 07:52:27

寻找 boost::anyboost::variant

变体实现基本上分为三种类型:

  1. 可以在类型之间自由转换的类型(想想非类型化语言)—— boost::lexical_cast 是你的朋友,或者 boost::variant...
  2. 可以保存任何类型,但类型安全 - 例如用 int 初始化,保持 int 并且不允许像其他任何类型一样隐式处理 - 这是 < a href="http://www.boost.org/doc/html/any.html" rel="nofollow noreferrer">boost::any 类型
  3. 邪恶允许任何类型 - 转换为你想要的类型而不进行错误检查,不保存类型信息 - 想想 void*

Looking for boost::any or boost::variant?

There are basically three types of variant implementations:

  1. A type that can be freely casted between types (think untyped languages) -- boost::lexical_cast is your friend here, or boost::variant...
  2. A type that can hold any type, but is typesafe -- e.g. initialized with an int, stays an int and doesn't allow to be treated implicitly like anything else -- this is the boost::any type
  3. The evil allow anything type -- cast to what you want without error checking, no type information held -- think void*
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文