gpt4 book ai didi

c++ - 使用 std::is_same 在 if 语句中访问类成员

转载 作者:行者123 更新时间:2023-11-30 01:09:18 29 4
gpt4 key购买 nike

我正在尝试解决以下问题:我想做一个 if 语句,它根据模板的参数是否是特定对象来执行某些操作 - 如果它是, 调用对象的成员函数。假设我想要一个 std::string

片段:

#include <iostream>
#include <string>

template <typename T>
void is_string(const T& arg) {
if (std::is_same<T, const std::string&>::value)
std::cout << arg.length() << std::endl;
else
std::cout << "The argument is not a string" << std::endl;
}

int main() {
is_string(0);
return 0;
}

编译不通过,报错如下:

types.cpp: In instantiation of ‘void is_string(const T&) [with T = int]’:
types.cpp:13:13: required from here
types.cpp:7:13: error: request for member ‘length’ in ‘arg’, which is of non-class type ‘const int’
std::cout << arg.length() << std::endl;

我认为我想要实现的目标在 C++11 中可能是不可能的,但我将不胜感激一些关于如何能够做到这一点的建议

最佳答案

在常规的if 语句中,两个分支都必须是有效代码。在你的情况下 int.length() 没有意义。

在 C++17 中,您可以简单地使用 constexpr if:

if constexpr(std::is_same<T, const std::string&>::value)
std::cout << arg.length() << std::endl;
else
std::cout << "The argument is not a string" << std::endl;

demo

在 C++11(或更早版本)中,您可以使用重载来实现类似的结果:

void foo(std::string const& str){
std::cout << str.length() << std::endl;
}

template<typename T>
void foo(T const&){
std::cout << "The argument is not a string" << std::endl;
}

template <typename T>
void is_string(const T& arg) {
foo(arg);
}

demo

关于c++ - 使用 std::is_same 在 if 语句中访问类成员,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40568642/

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