I don’t think hash values should be negative.
为什么不?拥有负哈希码完全有效。大多数使用哈希代码的方法自然就是负值,任何处理它们的事情都应该考虑到这一点。但是,我会考虑采用不同的方法来提供哈希码,例如
int hash = 17;
hash = hash * 31 + srcadd.hashCode();
hash = hash * 31 + dstadd.hashCode();
hash = hash * 31 + sourceport; // I'm assuming this is an int...
hash = hash * 31 + destinationport; // ditto
hash = hash * 31 + protocol.hashCode();
return hash;
不清楚这些表达式的类型是什么,但是我猜你最终将采用一个字符串的哈希码,而不是首先创建的字符串。虽然有更好的方法来获取已知域的哈希码,但上述方法可以很好地用作通用哈希生成技术。
请注意,如果您避免使用缩写,还可以使用骆驼套,例如, sourceAddress而不是srcadd。