最近在看stardict,需要用qt写一个字典当课设……
然后doc里面有这么一句
{0}. Number and Byte-order Conventions
When you record the numbers that identify sizes, offsets, etc., you
should use 32-bits numbers, such as you might represent with a glong
也就是说所有的数据应该是32位数,建议用glong,可是这是gtk里面的
我想知道,qt里面有没有类似的?
或者只有那个宏Q_UINT32?
如果我输入一个东西
cin>>(Q_UINT32)abc;
存入abc的会是32位喵?