gpt4 book ai didi

c++ - 如何从未知类型的变量访问嵌套类型?

转载 作者:太空宇宙 更新时间:2023-11-03 10:28:52 25 4
gpt4 key购买 nike

如何获取未知类型变量的类的成员类型? type_of 应该用什么来代替。

auto v = get_container();
type_of(v)::value_type x;

出于可维护性的原因,我想使用 auto,这样即使 get_container 的返回类型发生变化,也不会破坏任何内容。

最佳答案

我的印象是您正在寻找:

decltype(v)::value_type x;

decltype是来自 C++11 的一个非常强大的工具。看看its documentation .

关于c++ - 如何从未知类型的变量访问嵌套类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23740953/

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