如题

解决方案 »

  1.   

    typedef unsigned int UINT;
    明白了吧?
      

  2.   

    UINT   A 16-bit unsigned integer on Windows versions 3.0 and 3.1; a 32-bit unsigned integer on Win32INT Signed integer
      

  3.   

    typedef unsigned int UINT;---------------------------
    I known.I just want to know what's the exact difference between these two.Is it almost the same to use both of them in general case ?
      

  4.   

    UINT 无符号整数
    int 相反
      

  5.   

    UINT A 16-bit unsigned integer on Windows versions 3.0 and 3.1; a 32-bit unsigned integer on Win32就是说和平台有关,在16位机器上是16位的,在32位的机器上是32位的
      

  6.   

    编windows程序喜欢用UINT,编标准C/C++程序喜欢用 int个人观点,不知对否?
      

  7.   

    编windows程序喜欢用UINT,编标准C/C++程序喜欢用 int个人观点,不知对否?
    -------------------------------I love "int" all the time, there for comes across this question