gpt4 book ai didi

c++ - "using"关键字在 C++ 中究竟做了什么?

转载 作者:可可西里 更新时间:2023-11-01 16:37:22 28 4
gpt4 key购买 nike

<分区>

我发现“using”关键字令人困惑。如果我确实使用了一个类或结构,那么就没有必要在同一命名空间中使用以该类或结构作为参数的函数。喜欢下面的代码。

namespace A
{
struct testData
{
int x;
};

int testFunc(testData data)
{
return data.x;
}
}

#include <cstdio>;

using A::testData;

int main()
{
testData test = { 1 };
printf("%d", testFunc(test));

return 0;
}

我认为不应该允许我使用 testFunc(),因为我只对 testData 使用了“using”关键字。但是,这些代码工作得很好。

你能告诉我为什么会这样吗?

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