我是 C++ 中的指针和引用的新手,所以我想知道是否有人可以向我展示如何编写一个返回字符串引用的函数的示例,并且可能是正在使用的函数。例如,如果我想编写一个类似...的函数
//returns a refrence to a string
string& returnRefrence(){
string hello = "Hello there";
string * helloRefrence = &hello;
return *helloRefrence;
}
//and if i wanted to use to that function to see the value of helloRefrence would i do something like this?
string hello = returnRefrence();
cout << hello << endl;