c++ - 如何创建抽象数据类型的模板类?

标签 c++ class templates c++17 stdvector

我正在编写一组算法来创建一个简单的单元测试框架。标题为 UnitTest 的类(class)用标题为 strng 的字符串实例化描述了正在进行的测试。数据类型也在对象实例化时传递,这允许编译器知道传递的是什么数据类型。 main.cpp文件和 unit_test.hpp文件如下所示

// main.cpp file
#include <iostream>
#include <string>
#include <vector>
#include <array>
#include "unit_test.hpp"

int main(int argc, const char * argv[]) {
    std::vector<int> array_one = {1, 2, 3, 4};
    std::vector<float> array_two = {0.99, 1.99, 2.99, 3.99};

    std::string c ("Vector Test");
    UnitTest<int, float> q(c);
    double unc = 0.1;
    q.vectors_are_close(array_two, array_four, unc);
    return 0;
}

// unit_test.hpp file
#ifndef unit_test_hpp
#define unit_test_hpp
#endif /* unit_test_hpp */
#include <string>
#include <typeinfo>
#include <iostream>
#include <cmath>

template <class type1, class type2> class UnitTest
{
public:
    unsigned long remain;
    std::string str;
    UnitTest(std::string strng) {
        str = strng;
        remain = 50 - str.length();
    };
    void vectors_are_close(std::vector<type1>& i, std::vector<type2>& j, double k);
    // ----------------------------------------------------------------
private:
    void is_close(type1& i, type2& j, double k);
};

template <class type1, class type2> void UnitTest<type1, type2>::
vectors_are_close(std::vector<type1>& i, std::vector<type2>& j, double k)
{
    if (i.size() != j.size()) 
    {
        std::cout << str + std::string(remain, '.') +
            std::string("FAILED") << std::endl;
    }
    else 
    {
        try
        {
            for (int a = 0; a < i.size(); a++) {
                is_close(i[a], j[a], k);
            }
            std::cout << str + std::string(remain, '.') +
                std::string("PASSED") << std::endl;
        }
        catch (const char* msg)
        {
            std::cout << str + std::string(remain, '.') +
                std::string("FAILED") << std::endl;
        }
    }
}

template <class type1, class type2> void UnitTest<type1, type2>::
is_close(type1& i, type2& j, double k)
{
    double percent_diff = abs((j - i) / ((i + j) / 2.0));
    if (percent_diff > k)
    {
        throw "Number not in Tolerance";
    }
}

上面显示的成员函数遍历 vector 容器以确保每个 induce 中的数据在一定容差范围内与第二个 vector 匹配。虽然编写的代码运行良好,但它要求用户在每次想要使用不同数据类型进行单元测试时重新实例化该类。

在这种情况下,类被实例化为 UnitTest<int, float> .但在另一种情况下,它可能会被实例化为 UnitTest<float, double> .

这种方法没有任何问题,但是使用类似 UnitTest<> 的类来实例化一次类似乎更优雅。并且只有 vectors_are_close()函数接受不同的数据类型。有什么方法可以促进这种行为吗?

最佳答案

如果我理解正确的话,你不想用模板参数实例化类,而只是用类名 UnitTest 并且想根据不同的 type1 传递不同的成员函数实例type2

如果是,则不需要模板类,模板化成员函数:

class UnitTest 
{
private:
    std::string str;
    unsigned long remain;
public:
    UnitTest(const std::string& strng)
        : str{ strng },
          remain{ 50 - str.size() }
    {}

    template <class type1, class type2>
    void vectors_are_close(const std::vector<type1> &i, const std::vector<type2> &j, double k)
    {
       // code
    }
private:
    template <class type1, class type2>
    void is_close(type1 i, type2 j, double k)
    {
      // code
    }
};

int main() 
{
    std::vector<int> array_one{ 1, 2, 3, 4 };
    std::vector<float> array_two{ 0.99f, 1.99f, 2.99f, 3.99f };
    std::vector<double> array_three{ 0.99, 1.99, 2.99, 3.99 };
    double unc = 0.1;

    UnitTest q{ std::string{"Vector Test"} }; // non-templated class
    // call different types of args to same UnitTest obj
    q.vectors_are_close(array_one, array_two, unc);
    q.vectors_are_close(array_one, array_three, unc);
    return 0;
}

注意:如果您只想为整数和 float (或任何特殊类型组)实例化成员函数,请使用 SFINAE和他们一起。

例如,遵循 is_oky_types 特征将允许您仅为对函数体有效的算术类型实例化成员函数。

#include <type_traits>

template<typename Type>
using is_oky_type = std::conjunction<
    std::is_arithmetic<Type>,
    std::negation<std::is_same<Type, bool>>,
    std::negation<std::is_same<Type, char>>,
    std::negation<std::is_same<Type, char16_t>>,
    std::negation<std::is_same<Type, char32_t>>,
    std::negation<std::is_same<Type, wchar_t>> >;

template<typename T, typename U>
using is_oky_types = std::conjunction<is_oky_type<T>, is_oky_type<U>>;

在成员函数中:

template <
    class type1,
    class type2,
    std::enable_if_t<is_oky_types<type1, type2>::value>* = nullptr
>
void  vectors_are_close(const std::vector<type1> &i, const std::vector<type2> &j, double k)
{
    // code...
}

template <class type1, class type2>
void is_close(
    type1 i,
    type2 j,
    double k,
    std::enable_if_t<is_oky_types<type1, type2>::value>* = nullptr)
{
    // code...
}

关于c++ - 如何创建抽象数据类型的模板类?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55804163/

相关文章:

go - 有没有一种方法可以计算Go模板?

c++ - c++ 概念如何结合概念?

c++ - Qt:QProcess 结果与提示时的结果不匹配

c++ - Exiv2 - 一些图像标签不写,但有些写

c++ - 新的对象变体

Java:java.lang.NoClassDefFoundError

c++ - 使用 C++ 的正则表达式

Java:查找调用者类

C++ 函数嵌套模板

c++ - CRTP:将类型从派生类传递到基类