缩写相似的数据成员

Abbreviating similar data members

本文关键字:数据成员 相似 缩写      更新时间:2023-10-16

下面的代码说明了这个问题:

struct Data {
    int numFriends, numAcquaintances, numDates;
    // etc...
};
enum Country {USA, Canada, China}; // etc...
enum Personality {Serious, Lazy, Funny}; // etc...
enum Height {SuperShort, Short, Medium, Tall, SuperTall};
class Religion {};
class Person {
    std::map<Country, Data> countryStats;
    std::map<Personality, Data> personalityStats;
    std::map<Religion*, Data> religionStats;
    std::map<Height, Data> heightStats;  // And suppose there are 20 such similar data members
    // The problem:
    void insertNumFriends (Country country, int num) {countryStats[country].numFriends = num;}
    void insertNumFriends (Personality personality, int num) {personalityStats[personality].numFriends = num;}
    void insertNumFriends (Religion* religion, int num) {religionStats[religion].numFriends = num;}
    // and tons of other necessary methods (how to capture all of these using templates?);

这是我想出的(不完整的)解决方案,即使注释掉的行是编译的,它仍然不是一个好方法,因为所有的if语句(事实上,它只是和原来的方法一样长):

#include <iostream>
#include <map>
#include <typeinfo>
#include <typeindex>
struct Data {
    int numFriends, numAcquaintances, numDates;
    // etc...
};
enum Country {USA, Canada, China, France}; // etc...
enum Personality {Serious, Lazy, Funny}; // etc...
enum Height {SuperShort, Short, Medium, Tall, SuperTall};
class Religion {};
template <typename T>  // new struct here
struct Stats {
    std::map<T, Data> map;
};
class Person {
    Stats<Country> countryStats;
    Stats<Personality> personalityStats;
    Stats<Religion*> religionStats;
    Stats<Height> heightStats;  // And suppose there are 20 such similar data members
//  template <typename T> static std::map<std::type_index, Stats<T>> statsMap;  // illegal
  public:
    template <typename T>
    void insertNumFriends (const T& t, int num) {
        if (typeid(T) == typeid(Country)) {countryStats.map[t].numFriends = num;}
        // lines below will not compile, and it's a terrible method anyway:
//      else if (typeid(T) == typeid(Personality)) personalityStats.map[t].numFriends = num;
//      else if (typeid(T) == typeid(Religion)) religionStats.map[t].numFriends = num;
//      else if (typeid(T) == typeid(Height)) heightStats.map[t].numFriends = num;
    }
    void showAllStats() const {  // for testing only
        for (int COUNTRY = USA; COUNTRY <= France; COUNTRY++) {
            auto it = countryStats.map.find(static_cast<Country>(COUNTRY));
            if (it != countryStats.map.end())
            std::cout << "Country " << COUNTRY << ": " << it->second.numFriends << " friends" << std::endl;
        }
    // etc...
    }
};

int main() {
    Person bob;
    bob.insertNumFriends (USA, 5);
    bob.insertNumFriends (France, 2);
//  bob.insertNumFriends (Funny, 3); // won't compile because insertNumFriends<T> is not complete
    bob.showAllStats();  // USA: 5 friends, France: 2 friends
}

什么是更好的(有效的解决方案)?无循环访问者模式或类似的东西?注意:Person有数据成员,如姓名,年龄,国家,外国人,身高等…Too和确实代表一个人,而不仅仅是容器的接口(上面的容器数据成员是这个人的"记录")。

一个可能的解决方案:模拟c++ 1y变量模板

定义一个保存数据的函数,在本例中为map:

template<typename T>
std::map<T,Data>& map()
{
    static std::map<T,Data> _map;
    return _map;
}

现在只创建一个泛型插入函数:

template<typename T>
void insert_data( const T& key , const Data& data )
{
    map<T>()[key] = data;
}

是的,Manu的解决方案是如此简短和优雅!只是漂亮!下面是我使用他的方法编写的代码,最后我发现需要使用指向数据成员的晦涩的指针:

#include <iostream>
#include <map>
struct Data {
    int numFriends, numAcquaintances, numDates;
};
enum Country {USA, Canada, France};
class Religion {} *Islam = new Religion;
class Person {
    private:
        template<typename T>
        std::map<T, Data>& dataMap() {static std::map<T, Data> map;  return map;}           public:
        template<typename T>
        void insert (const T& key, int Data::*dataPtr, int num) {
            dataMap<T>()[key].*dataPtr += num;  // pointer to data members finally useful!
        }
        void print() {  // for testing the results only
            std::cout << "Number of American friends: " << dataMap<Country>()[USA].numFriends << std::endl;
            std::cout << "Number of Islamic acquantances: " << dataMap<Religion*>()[Islam].numAcquaintances << std::endl;
        }
};
int main() {
    Person bob;
    bob.insert (USA, &Data::numFriends, 10);
    bob.insert (Islam, &Data::numAcquaintances, 20);
    bob.print();  // USA friends = 10, Islamic acquaintances = 20
}