在C/C++ 回传区域变量问题
想请问一下我下面反转字串例子,
String resultStr = ""; 是 local 变量,
这样回传回去是把内容 copy 一份回去main() 函数的result?
应该不是ref? String resultStr = ""; 离开reverse函数应该就回收这块内存
如果我今天改成 String resultStr = new String();
传回是把address 回传去让 result 参考同一块内存嘛?
我查网络Java 无法印address 来判断有人说用hashCode, 但是看到
hashcode :
只要求相同对象的 hashcode 一样
并不保证不同对象的 hashcode 不一样
"即,有可能不同对象的 hashcode 是一样的"
public static String reverse(String originalStr)
{
String resultStr = "";
... 处理字串反转存到 resultStr
return resultStr;
}
public static void main(String[] args) throws IOException {
String s = new String("hello world");
String result = reverse(s);
System.out.println(Integer.toHexString(result.hashCode()));
System.out.println(result);
}
完整程式码
https://gist.github.com/shihyu/e6acfc206928b2cbb3011ea193fe1c4f
谢谢