Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.6k views
in Technique[技术] by (71.8m points)

c++ - Function specialization to access struct members with getter using enum

I have an enum and a struct

enum STORE_ENUM { A_DATA, B_DATA, C_DATA, D_DATA };
struct Store {
   int a;
   char b;
   long c;
   bool d;

}

and I want to access its members with a specialized get function that basically looks like this

T get(STORE_ENUM,store s);

and it returns the appropriate type and hopefully statically type checks. is this possible in C++?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Yes it's possible. The boost PFR library allows something very similar to how you've envisaged it, e.g.:

auto& x = boost::pfr::get<B_DATA>(s);

See the tutorial here.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...