1

関数 f を考える

void f(const std::string& s) {
    ...
}

次のような固定文字列で f を呼び出しても安全ですか。

f("abc");
4

3 に答える 3

8

std::string暗黙的に構築された fromの存続期間は、"abc"への呼び出しがf()終了するまでです。終了後にその参照を別の場所に保持しない限り、f()完全に安全です。

std::string const *pstr;

void f(std::string const &s)
{
    s.length(); // safe. s has an instance backing
                // it for the lifetime of this function.

    pstr = &s; // still technically safe, but only if you don't
               // dereference pstr after this function completes.
}

f("abc");

pstr->length(); // undefined behavior, the instance
                // pstr pointed to no longer exists.
于 2012-12-11T22:44:32.073 に答える
2

引数への参照またはポインターをどこかに保存せず、関数から戻った後もそれが残っていることを願っていると仮定すると、問題ありません。関数が呼び出されると、一時的std::stringに作成されます。関数が実行されます。

于 2012-12-11T22:44:45.257 に答える
0

関数が戻った後は使用しなければ安全です。

このため、別の文字列オブジェクトを (関数が戻る前に) 初期化するために使用することも安全です。たとえこの文字列オブジェクトがより長く存続する (そしてより長く使用される) 場合でもです。

于 2012-12-11T22:43:09.173 に答える