gpt4 book ai didi

c++ - 我是分配给同一个变量还是重新定义一个新变量?

转载 作者:太空狗 更新时间:2023-10-29 21:01:30 24 4
gpt4 key购买 nike

在 A.h 中:

#ifndef A_h
#define A_h

#include "string"

extern std::string a;

#endif

在 A.cpp 中,在全局范围内:

#include "A.h"

std::string a = "a";

最佳答案

您没有重新定义变量,因为您的代码只有一个定义 - CPP 文件中的定义。 header 中的那个是声明,因为它使用了 extern 关键字。 CPP 文件为 header 中声明的变量提供定义。

关于c++ - 我是分配给同一个变量还是重新定义一个新变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18172178/

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