C++ 中的 StringStream/c_str() 损坏

Tho*_*ood 0 c++ string c-strings stringstream

我在使用 std::cout、std::stringstream 和 std::string.c_str() 时遇到了一些问题。主要是,似乎有些东西被困在某个地方的缓冲区中,我不知道如何解决这个问题。

如果您不喜欢在 StackOverflow 中阅读代码,这里是我 github 的相关链接:TLString 类测试类单元测试——您可以跳到我陈述更简洁问题的最后。

在我的单元测试中,我有以下代码:

    Test <std::string> strtest; // A unit test object expecting strings.
    Test <const char*> chtest; // A unit test object expecting const char*s
    // ...

    TurnLeft::Utils::TLString str3("Exterminate.");
    // ...

    /* Basically, name() and expect() will use the passed arg. 
     * in the output in order to
     * display output such as the following:
     * str(): expecting 'Exterminate.' | Actual 'Exterminate.' => PASS
     */
    strtest.name("str()").expect("Exterminate.").test( str3.str() );

    /* To try and determine where the corruption was occuring, I did a 
     * simple cout here, and got what should be the expected result of 
     * the next test,
     * meaning that the actual test should be succeeding.
     */
    std::cout << str3.c_str() << std::endl //outputs Exterminate. normally.

    /* But when I try to invoke that same method (c_str()) within the test
     * object, it simply copies the argument passed in for name().
     */
    chtest.name("c_str()").expect("Exterminate.").test( str3.c_str() );
    // Should output 'Exterminate.' as in the saatement before, but instead
    // outputs 'c_str()'.
Run Code Online (Sandbox Code Playgroud)

下面是 Test 类的代码:

namespace unittest{
static std::string status[2] = {"FAIL", "PASS"};

    template <class ExpectedResult>
    class Test
    {
     private:
        ExpectedResult  expected;
        ExpectedResult  actual;
        std::string     testName;
     public:
        Test();
        Test <ExpectedResult>& expect (ExpectedResult value);
        Test <ExpectedResult>& name   (std::string);
        void test   (ExpectedResult value);
    };

template <class ExpectedResult> Test <ExpectedResult>&
Test<ExpectedResult>::expect(ExpectedResult value)
{    
    expected = value;
    return *this;
}

template <class ExpectedResult>
Test <ExpectedResult>&
Test<ExpectedResult>::name(std::string aName)
{
    testName = aName;
    return *this;
}

    template <class ExpectedResult>
    void Test<ExpectedResult>::test(ExpectedResult value)
    {
        actual = value;
        std::cout << testName << ": ";
        std::cout << "Expecting: " << expected << " | ";
        std::cout << "Actual: " << actual;
        std::cout << " => " << status[actual==expected] << std::endl;
    }
Run Code Online (Sandbox Code Playgroud)

TLString 类是我正在编写的一个类,它将为 C++ 中的字符串提供一些更流畅的操作(例如,连接)。它使用字符串流来处理这些操作。该TLStream::c_str()方法实际上只是这样做:return stream.str().c_str();

所以,我真的很困惑如何actual分配testName. 我不确定冲突发生在哪里,因为变量接近交互的唯一时间是它们都输出到 CLI 时,甚至在这种情况下,这两个是不同的数据类型。

我写了 c_str() 功能,因为很简单,您永远不知道某些第三方库何时将依赖 C 字符串而不是 C++ 字符串,并且没有理由限制我的类。即使在 std::ios 中,某些事情也需要使用 c 字符串。

任何帮助将不胜感激。

谢谢!

Dar*_*con 5

std::stringstream.str()返回一个类型为 的临时对象std::stringTLStream::c_str()返回时此临时值超出范围,返回的char const*指针指向已释放的内存。