Following java code returns hash code of a string.
String uri = "Some URI"
public int hashCode() {
return uri.hashCode();
}
I want to translate this code to c++. Is there any function availabe in c++ or an easy way to translate this.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…