[问题]奇怪的魔法数字

在反编译微软的代码后,发现下面的代码:
1 internal static int GetCombinedHashCodes(params int[] args)
2 {
3     int num1 -757577119;
4     for (int num2 = 0; num2 < args.Length; num2++)
5     {
6         num1 = (args[num2] ^ num1) * -1640531535;
7     }
8     return num1;
9 }
这个方法在System.Windows.Forms.WindowsFormsUtils中。

实在很想知道,其中的两个魔法数字有什么特别的,或者只是某人心情好?

原文地址:https://www.cnblogs.com/Cajon/p/562866.html