什么是 QVariant 以及何时应该使用它?
什么是QVariant
以及何时应该使用它?
What is a QVariant
and when should it be used?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
什么是QVariant
以及何时应该使用它?
What is a QVariant
and when should it be used?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
QVariant 用于存储对值的引用,您不一定知道其中的内容。这是一种创建 API 的方法,可以接受“任何内容”作为对未知类型的引用。 IE 中,您不必拥有一个接受 long 的 API、另一个接受 int 的 API、另一个接受 float 的 API、另一个接受字符串的 API,您可以使用一个接受 QVariant 的 API。
然后在一个更复杂的函数中,您需要某种类型(例如在 QSettings 中),您可以在取回 Variant 后从 Variant 中提取您需要的内容。
QVariant is used to store references to values where you don't necessarily know what is inside. It's a way to create APIs that can accept "anything" as a reference to an unknown type. IE, instead of having to have an API that accepts a long, and another for an int, and another for a float, and another for a string you can have a single API that accepts a QVariant instead.
Then inside a more complex function where you need a certain type (like in QSettings) you can extract just what you need from the Variant after getting it back.
QVariant 是变量的容器。它可以存储不同类型的变量。在某些方面与 void* 类似。但它为您提供有关存储类型的信息。
例如,它可用于从函数返回不同类型的值。
QVariant is a container of variables. It can store variables of different types. Similar in some way to void*. But it provides You information about the stored type.
It can be used for example to return different types of values from a function.