Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的哈希表实现中使用 FNV 哈希作为哈希算法,但我在这一行的问题标题中收到警告:
unsigned hash = 2166136261;
我不明白为什么会这样,因为当我这样做时:
printf("%u\n", UINT_MAX); printf("2166136261\n");
我明白了:
4294967295 2166136261
这似乎在我的机器的限制之下......
为什么我会收到警告,我有哪些选择可以摆脱它?
unsigned hash = 2166136261u; // note the u.
您需要一个后缀u来表示这是一个无符号数。如果没有u后缀,它将是一个有符号的数字。自从
u
2166136261 > 2³¹ - 1 = INT_MAX,
这个整数文字会有问题。