suchen

Heim  >  Fragen und Antworten  >  Hauptteil

python - c++枚举类型保存为二进制文件,占多少个二进制位?

巴扎黑巴扎黑2839 Tage vor1013

Antworte allen(1)Ich werde antworten

  • 大家讲道理

    大家讲道理2017-04-18 10:10:13

    Unscoped enum 的默认类型是 int,在你的平台上 int 占几位这个 enum 就占几位。

    随便写了个程序测了一下:

    cholerae@Lenovo-PC:~$ cat test.cc
    #include <stdio.h>
    enum Genera {
    INDEX = 0,
    BOND = 1,
    FUND = 2,
    FUTURE = 3,
    OPTION = 4,
    WARRANT_ = 5,
    STOCK = 6,
    ETF = 7
    };
    
    int main() {
            printf("%lu %lu\n", sizeof(Genera), sizeof(int));
            return 0;
    }
    cholerae@Lenovo-PC:~$ ./a.out
    4 4

    这不是一样么,我的系统是64位的。

    Antwort
    0
  • StornierenAntwort