gpt4 book ai didi

c++ - 为什么 shared_variable 在 gtest 中被重置为 nil

转载 作者:行者123 更新时间:2023-11-28 05:58:46 26 4
gpt4 key购买 nike

这是我的代码,xmlDoc* d 在“ExTest,try1”中总是重置为 nil

ex_test.cpp

typedef const char* str;
class ExTest : public ::testing::Test {
protected:
static str html;
static xmlDoc *d;

static void SetUpTestCase() {
html = "<html></html>";
xmlDoc *d = xmlParseDoc((const xmlChar *) html);
d;//0x685a30
}
};

str ExTest::html = NULL;
xmlDoc *ExTest::d = NULL;

TEST_F(ExTest, try1) {
d; //nil
}

最佳答案

您有两个不同的变量,都称为 d

static xmlDoc *d; <- here's one

static void SetUpTestCase() {
html = "<html></html>";
xmlDoc *d = ... <- here's the other

你的意思可能是:

    d = xmlParseDoc((const xmlChar *) html);

这将设置现有 d 变量的值,而不是创建一个新变量。

关于c++ - 为什么 shared_variable 在 gtest 中被重置为 nil,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33677986/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com