I like using sentry classes in c++, but I seem to have a mental affliction that results in repeatedly writing bugs like the following:
{
MySentryClass(arg);
// ... other code
}
Needless to say, this fails because the sentry dies immediately after creation, rather than at the end of the scope, as intended. Is there some way to prevent MySentryClass from being instantiated as a temporary, so that the above code either fails to compile, or at least aborts with an error message at runtime?
No, there is no exit from this problem. To make objects on the stack, you have to have public constructors, and if you have public constructors, you can make the mistake you are reporting.
Not sure you'll like this solution, but the solution may well be
grep
:Another thing you could do is use
sed
orperl
to preprocess your source file, replacingMySentryClass(
with\n#error MySentryClass used incorrectly\n
, which hopefully will give you a line number that's close to where the error is. How to do this depends on your build system.I think the #define is the best method.
But just as an option for not using #define:
Main
Edited. Now works better.
The only thing you could do is make the constructors private and force access through a helper function. This is far less similar than the initial construction syntax and less likely to be mistaken. You could also allocate on the heap (still a waste) but it's much easier to spot. However, if you want your class to be constructible, you can't stop people constructing rvalues of that type.
Edit: IF you know that MySentryClass always takes an argument, you could disallow construction AND and only allow operator=(arguments). This would force you to do
You could do some kind of method chain for it.
What you are trying to do is perfectly legal in C++ and I don't think there is a way to disallow it.
I can't think of an automatic way to detect if you make this mistake or not. You could always create a macro that expands to the correct thing and use that to declare the sentry instead if you keep using it wrong.
and then use
or put a post-it on your monitor to remind you.