摘要: public long GetGTK(string sKey) { int hash = 5381; for (int i = 0, len = sKey.Length; i < len; ++i) { hash += (hash << 5) + (int)sKey[i]; } return (ha 阅读全文
posted @ 2016-02-23 16:54 来了啊老弟 阅读(2139) 评论(0) 推荐(0)