其他分享
首页 > 其他分享> > qintptr

qintptr

作者:互联网

Integral type for representing pointers in a signed integer (useful for hashing, etc.).

Typedef for either qint32 or qint64. This type is guaranteed to be the same size as a pointer on all platforms supported by Qt. On a system with 32-bit pointers, qintptr is a typedef for qint32; on a system with 64-bit pointers, qintptr is a typedef for qint64.

Note that qintptr is signed. Use quintptr for unsigned values.

标签:typedef,qintptr,pointers,qint64,system,qint32
来源: https://www.cnblogs.com/hshy/p/14375452.html