1、代码
#ifdef _WIN64 qDebug()<<64; #else qDebug()<<32; #endif
2、注意
_WIN64只有在64位程序上才被定义;
_WIN32在64和32位程序上都会被定义