私は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;