26

在我的程序中有几次,我不得不检查一个变量是否是许多选项之一。例如

if (num = (<1 or 2 or 3>)) { DO STUFF }

我已经搞砸了“或”,但似乎没有什么是正确的。我试过了

if (num == (1 || 2 || 3))

但它什么也没做。

我想方便地区分几个组。例如

if (num = (1,2,3))

else if (num = (4,5,6))

else if (num = (7,8,9))
4

7 回答 7

65

这是 C++11 中的一种方法,使用std::initializer_list

#include <algorithm>
#include <initializer_list>

template <typename T>
bool is_in(const T& v, std::initializer_list<T> lst)
{
    return std::find(std::begin(lst), std::end(lst), v) != std::end(lst);
}

有了它,你可以这样做:

if (is_in(num, {1, 2, 3})) { DO STUFF }

尽管不与内置类型一起使用时,它不是很有效。int可以正常工作,但是如果您比较std::string变量,例如,生成的代码很糟糕。

但是,在 C++17 中,您可以改用更有效的解决方案,该解决方案适用于任何类型:

template<typename First, typename ... T>
bool is_in(First &&first, T && ... t)
{
    return ((first == t) || ...);
}

// ...

// s1, s2, s3, s4 are strings.
if (is_in(s1, s2, s3, s4)) // ...

C++11 版本在这里效率非常低,而这个版本应该产生与手写比较相同的代码。

于 2013-03-03T02:56:08.057 回答
13

如果您要检查的值足够小,您可以为您寻找的值创建一个位掩码,然后检查该位是否被设置。

假设,您关心几个组。

static const unsigned values_group_1 = (1 << 1) | (1 << 2) | (1 << 3);
static const unsigned values_group_2 = (1 << 4) | (1 << 5) | (1 << 6);
static const unsigned values_group_3 = (1 << 7) | (1 << 8) | (1 << 9);    
if ((1 << value_to_check) & values_group_1) {
  // You found a match for group 1
}
if ((1 << value_to_check) & values_group_2) {
  // You found a match for group 2
}
if ((1 << value_to_check) & values_group_3) {
  // You found a match for group 3
}

这种方法最适用于不超过 CPU 喜欢使用的自然大小的值。在现代,这通常是 64,但可能会根据您的环境的具体情况而有所不同。

于 2013-03-03T02:41:07.330 回答
9

您必须与每个值进行比较。例如

if (num == 1 || num == 2 || num == 3) { stuff }

您可能还想考虑切换并故意放弃案例(尽管我认为这不是您所说的最佳解决方案)。

switch (num) {
    case 1:
    case 2:
    case 3:
        {DO STUFF}
        break;

    default:
        //do nothing.
}
于 2013-03-03T01:52:39.680 回答
8

我刚刚遇到了类似的问题,我来到了这些 C++11 解决方案:

template <class T> 
struct Is 
{ 
  T d_; 
  bool in(T a) { 
    return a == d_; 
  } 
  template <class Arg, class... Args> 
  bool in(Arg a, Args... args) { 
    return in(a) || in(args...); 
  } 
}; 

template <class T> 
Is<T> is(T d) { 
  return Is<T>{d}; 
}

或者作为没有递归终止方法的替代方案。请注意,这里的比较顺序是未定义的,并且如果找到第一个匹配项,则不会提前终止。但是代码更紧凑。

template <class T>
struct Is {
  const T d_;
  template <class... Args>
  bool in(Args... args) {
    bool r{ false }; 
    [&r](...){}(( (r = r || d_ == args), 1)...);
    return r;
  }
};

template <class T>
Is<T> is(T d) { 
  return Is<T>{d}; 
}

因此,对于这两种解决方案,代码如下所示:

if (is(num).in(1,2,3)) {
  // do whatever needs to be done
}
于 2015-01-24T09:51:19.500 回答
6

您可以定义一组整数,将所需的值添加到其中,然后使用 find 方法查看有问题的值是否在集合中

std::set<int> values;
// add the desired values to your set...
if (values.find(target) != values.end())
    ...
于 2013-03-03T01:58:28.133 回答
5

我需要为枚举做类似的事情。我有一个变量,并希望根据一系列值对其进行测试。

在这里,我使用了可变参数模板函数。请注意 type 的专业化const char*,因此对于 when storesis_in( my_str, "a", "b", "c")有预期的结果。my_str"a"

#include <cstring> 

template<typename T>
constexpr  bool is_in(T t, T v) {
  return t == v;
}

template<>
constexpr  bool is_in(const char* t, const char* v) {
  return std::strcmp(t,v);
}

template<typename T, typename... Args>
constexpr bool is_in(T t, T v, Args... args) {
  return  t==v || is_in(t,args...);
}

示例用法:

enum class day
{
  mon, tues, wed, thur, fri, sat, sun
};

bool is_weekend(day d)
{
  return is_in(d, day::sat, day::sun);
}
于 2017-02-10T23:56:29.863 回答
-2
float n;
if (n<1) exit(0);  
if (n / 3 <= 1)  
   // within 1, 2, 3
else if (n / 3 <= 2)  
   // within 4, 5, 6  
else if (n / 3 <= 3)  
   // within 7, 8, 9
于 2020-04-05T09:15:20.710 回答