来自 const std::vector<>& 的 auto对象还是参考?

发布于 2024-12-26 10:02:46 字数 332 浏览 0 评论 0 原文

假设我们有一个具有以下接口的对象:

struct Node_t {
 ... const std::vector< something >& getChilds() const;
 } node;

现在,我使用 auto 变量访问该属性,如下所示:

auto childs = node->getChilds();

childs 的类型是什么? a std::vector<某事>或对某物的引用?

suppose we have an object with the following interface:

struct Node_t {
 ... const std::vector< something >& getChilds() const;
 } node;

Now, i access the property with an auto variable like this:

auto childs = node->getChilds();

what is the type of childs? a std::vector< something > or a reference to one?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

谢绝鈎搭 2025-01-02 10:02:46

childs 的类型将为 std::vector

auto 由与模板类型推导。此处选择的类型与为 template 选择的类型相同。 f(T t); 在像 f(node->getChilds()) 这样的调用中。

类似地,auto& 将为您提供与 template 选择的类型相同的类型。 f(T& t);auto&& 将为您提供与 template 选择的类型相同的类型f(T&&t);

这同样适用于所有其他组合,例如 auto const&auto*

The type of childs will be std::vector<something>.

auto is powered by the same rules as template type deduction. The type picked here is the same that would get picked for template <typename T> f(T t); in a call like f(node->getChilds()).

Similarly, auto& would get you the same type that would get picked by template <typename T> f(T& t);, and auto&& would get you the same type that would get picked by template <typename T> f(T&& t);.

The same applies for all other combinations, like auto const& or auto*.

糖粟与秋泊 2025-01-02 10:02:46

它是一个 std::vector。如果你想要一个引用,你可以这样做:

auto & childs = node->getChilds();

那当然是一个常量引用。

It's an std::vector<something>. If you want a reference, you can do this:

auto & childs = node->getChilds();

That will of course be a const reference.

冷了相思 2025-01-02 10:02:46

auto 为您提供 std::vector。您可以指定引用限定符 auto &,也可以使用 decltype

decltype( node->getChilds() ) childs = node->getChilds();

auto gives you std::vector<something>. You can either specify reference qualifier auto & or, alternatively, you can use decltype:

decltype( node->getChilds() ) childs = node->getChilds();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文