Suppose I have some incomplete type
// in foo.hh
struct Hidden;
that I want to use as element type of a std::vector
. Using an union
I can "defer" calls to the constructor(s) and the destructor of the std::vector
to the implementation of the unions constructor(s) / destructor.
// in foo.hh
struct Public {
union Defer {
std::vector<Hidden> v;
Defer();
// add copy/move constructor if needed
~Defer();
} d;
};
Now I can use Public
by only including foo.hh
and linking with the file(s) implementing Public::Defer::Defer()
and Public::Defer::~Defer()
. Only those will need access to the full definition of Hidden
.
Is this legal C++? If so, since when?
Background: Question that came up in my answer to another question.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…