请考虑以下课程:
class SocialPrefNode{
public:
// Constructors & Destructor
SocialPrefNode( );
SocialPrefNode( char self, int ind, int link, bool stack, std::vector<SocialPrefNode*> pref,
std::vector<SocialPrefNode*> worse, std::vector<SocialPrefNode*> indiff );
SocialPrefNode( const SocialPrefNode& copy );
~SocialPrefNode( );
// Setters
void set_id( char self );
void set_index( int ind );
void set_lowlink( int link );
void set_onstack( bool stack );
void set_pref( std::vector<SocialPrefNode*> prefs );
void set_pref( SocialPrefNode& prefs );
void set_worse( std::vector<SocialPrefNode*> wrs );
void set_worse( SocialPrefNode& wrs );
void set_indiff( std::vector<SocialPrefNode*> indiff );
void set_indiff( SocialPrefNode& indiff );
// Getters
char get_id( ){ return id; }
int get_index( ){ return index; }
int get_lowlink( ){ return lowlink; }
bool get_onstack( ){ return onstack; }
std::vector<SocialPrefNode*> get_preferences( ){ return preferences; }
std::vector<SocialPrefNode*> get_worse( ){ return worsethan; }
std::vector<SocialPrefNode*> get_indiff( ){ return indifference; }
// Operators
SocialPrefNode& operator=( const SocialPrefNode& copy );
private:
char id{ };
int index{ };
int lowlink{ };
bool onstack{ };
std::vector<SocialPrefNode*> preferences{ };
std::vector<SocialPrefNode*> worsethan{ };
std::vector<SocialPrefNode*> indifference{ };
};
std::ostream& operator<<( std::ostream& os, SocialPrefNode& node );
问题:是否可以重载/覆盖/重新定义下标运算符s.t。例如,一个人可以访问三个选项中的选择向量。
也就是说,假设:SocialPrefNode ordering{ }
。我希望能够像ordering[ i ]
中那样使用下标运算符并且能够在类的三个向量中选择一个,以使下标/索引i起作用。
示例:一个人想要访问preferences
的{{1}}向量中的第三个元素。然后,SocialPrefNode ordering
就会执行操作,因此可以访问所需的元素。
答案 0 :(得分:2)
一个可能的解决方案是使用幻像类型包装要使用的向量。我遵循了this blog post,并提出了以下解决方案。
// Wrapper need once in the complete project:
template <typename T, typename Parameter>
class NamedType
{
public:
explicit NamedType(T const& value) : value_(value) {}
explicit NamedType(T&& value) : value_(std::move(value)) {}
T& get() { return value_; }
T const& get() const { return value_; }
private:
T value_;
};
// Only showing the new parts in your class!
class SocialPrefNode {
public:
// One phantom type for each array index
using preferences_index = NamedType<std::ptrdiff_t, struct preferences_Parameter>;
using worsethan_index = NamedType<std::ptrdiff_t, struct worsethan_Parameter>;
using indifference_index = NamedType<std::ptrdiff_t, struct indifference_Parameter>;
// One operator[] for each array index type
SocialPrefNode* operator[](preferences_index i) { return preferences[i.get()]; }
SocialPrefNode* operator[](worsethan_index i) { return worsethan[i.get()]; }
SocialPrefNode* operator[](indifference_index i) { return indifference[i.get()]; }
}
// Usage is simple assuming a SocialPrefNode s.
s[0]; // This will not work!
s[SocialPrefNode::preferences_index{ 0 }]; // Accessing preferences
s[SocialPrefNode::worsethan_index{ 0 }]; // Accessing worsethan
s[SocialPrefNode::indifference_index{ 0 }]; // Accessing indifference
如果您不介意添加外部依赖项,则可以直接使用NamedType
作者的Github repo(与此处相比,该类有所扩展)。