gpt4 book ai didi

c++ - 可变参数模板中的类成员函数

转载 作者:太空狗 更新时间:2023-10-29 22:56:07 31 4
gpt4 key购买 nike

我正在尝试编写一个可变参数函数来生成一个 gmock 匹配器,该匹配器一次检查多个属性是否为零。

// Class with three properties.
class Vec3 {
public:
double x() const;
double y() const;
double z() const;
};

using ::testing::AllOf;
using ::testing::Property;

Vec3 vec3;
// I could do this...
EXPECT_THAT(vec3, AllOf(Property(&Vec3::x, Eq(0.0)),
Property(&Vec3::y, Eq(0.0)), Property(&Vec3::z, Eq(0.0)));

// But I'd want to do something like this...
EXPECT_THAT(vec3, PropertiesAreZero(&Vec3::x, &Vec3::y, &Vec3::z));

我似乎无法在编写生成等效匹配器的可变函数方面取得进展。这是我一直在尝试的:

template <typename T, typename M, typename P>
Matcher<T> PropertiesAre(M matcher, P(T::*... args)()) {
return AllOf(Property(args, matcher)...);
};

template <typename T, typename... Others>
Matcher<T> PropertiesAreZero(Others... others) {
return PropertiesAre(Eq(0.0), others...);
}

Vec3 vec3;
EXPECT_THAT(vec3, PropertiesAreZero(&Vec3::x, &Vec3::y, &Vec3::z));

我收到以下编译错误:

error: type 'P (T::*)()' of function parameter pack does not contain any unexpanded parameter packs
Matcher<T> PropertiesAre(M matcher, P(T::*... args)()) {
~~~~~~^~~~~~~~~~~
error: pack expansion does not contain any unexpanded parameter packs
return AllOf(Property(args, matcher)...);
~~~~~~~~~~~~~~~~~~~~~~~^
error: no matching function for call to 'PropertiesAre'
PropertiesAre(Ne(0.0),
^~~~~~~~~~~~~
gmock/include/gmock/gmock-matchers.h:5240:60: note: expanded from macro 'EXPECT_THAT'
::testing::internal::MakePredicateFormatterFromMatcher(matcher), value)
^~~~~~~
gtest/include/gtest/gtest_pred_impl.h:117:23: note: expanded from macro 'EXPECT_PRED_FORMAT1'
GTEST_PRED_FORMAT1_(pred_format, v1, GTEST_NONFATAL_FAILURE_)
^~~~~~~~~~~
gtest/include/gtest/gtest_pred_impl.h:104:17: note: expanded from macro 'GTEST_PRED_FORMAT1_'
GTEST_ASSERT_(pred_format(#v1, v1), \
^~~~~~~~~~~
gtest/include/gtest/gtest_pred_impl.h:80:52: note: expanded from macro 'GTEST_ASSERT_'
if (const ::testing::AssertionResult gtest_ar = (expression)) \
^~~~~~~~~~
note: candidate function template not viable: requires 2 arguments, but 4 were provided
Matcher<T> PropertiesAre(M matcher, P(T::*... args)()) {
^
error: no matching function for call to 'PropertiesAreZero'
PropertiesAreZero(
^~~~~~~~~~~~~~~~~
gmock/include/gmock/gmock-matchers.h:5240:60: note: expanded from macro 'EXPECT_THAT'
::testing::internal::MakePredicateFormatterFromMatcher(matcher), value)
^~~~~~~
gtest/include/gtest/gtest_pred_impl.h:117:23: note: expanded from macro 'EXPECT_PRED_FORMAT1'
GTEST_PRED_FORMAT1_(pred_format, v1, GTEST_NONFATAL_FAILURE_)
^~~~~~~~~~~
gtest/include/gtest/gtest_pred_impl.h:104:17: note: expanded from macro 'GTEST_PRED_FORMAT1_'
GTEST_ASSERT_(pred_format(#v1, v1), \
^~~~~~~~~~~
gtest/include/gtest/gtest_pred_impl.h:80:52: note: expanded from macro 'GTEST_ASSERT_'
if (const ::testing::AssertionResult gtest_ar = (expression)) \
^~~~~~~~~~
note: candidate template ignored: couldn't infer template argument 'T'
Matcher<T> PropertiesAreZero(Others... others) {
^
error: no matching function for call to 'PropertiesAreZero'
PropertiesAreZero(
^~~~~~~~~~~~~~~~~

如果我能得到任何帮助,我将不胜感激。我已经反对这一整天了。

最佳答案

如果手边没有诸如 AllOf 之类的定义,要做到这一点有点棘手,但这是我对你的目标的尝试,然后我会尝试解释你错了什么。

template<typename R, typename T>
using const_member_ptr = R(T::*)() const;

template<typename T, typename M, typename... R>
Matcher<T> PropertiesAre(M matcher, const_member_ptr<R,T> ...args)
{
return AllOf<T>(Property(args, matcher)...);
}

template <typename T, typename... R>
Matcher<T> PropertiesAreZero(const_member_ptr<R,T>... others)
{
return PropertiesAre<T>(Eq(0.0), others...);
}

第一个问题是,在您的 PropertiesAreZero 版本中,编译器无法推断出 T 是什么。编译器必须能够从函数的参数中推断出来,所以你必须给它一些东西来进行模式匹配。在这里的例子中,我假设您正在调用 const 成员函数,并且当编译器与其进行模式匹配时,它可以推断出 T

既然我们有了 T,我明确地将它提供给 PropertiesAre,即使我们可以再次推断它。 PropertiesAre 的一个问题是您使用省略号来扩展参数包,但它实际上不是可变参数模板。我通过使 R 模板参数可变来解决这个问题。

作为引用,这些是我猜的定义:

template<typename T>
class Matcher{};

struct Eq
{ Eq(double){} };

template<typename T, typename... X>
Matcher<T> AllOf(X ...x) {}

template<typename P, typename M>
int Property(P p, M m) {}

并且在 Godbolt 上编译.

关于c++ - 可变参数模板中的类成员函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49217891/

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