InterviewSolution
Saved Bookmarks
| 1. |
What Is Qvariant? |
|
Answer» 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. 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. |
|