Instead of doing the following everytime
start();
// some code here
stop();
I would like to define some sort of macro which makes it possible to write like:
startstop()
{
//code here
}
Is it possible in C++?
|
|
|
You can do something very close using a small C++ helper class.
Then in your code:
When execution enters the block and constructs the |
|||||||||||||||||
|
|
The idiomatic way of doing this in C++ is called Resource Acquisition Is Initialization, or shortly RAII. In addition to providing what you want, it also has the added benefit of being exception safe: the Define a guard struct:
and then rewrite your code this way:
The guard's destructor (and thus the |
|||||
|
|
|
|||||||||||||||
|
|
Other answers have addressed the RAII side of the question well, so I'm going to address the syntax side of it.
Used like:
Should be self-explanatory enough. |
|||||||||||
|
|
Generic solution with RAII and boost::function ( std::function ).
or to test and check the idea
|
||||
|
|
What are you trying to do? I'd recommend checking out RAII as a much more C++ oriented way of doing things than macro hacking, with all its unforeseen consequences. |
|||
|
|
|
Don't use macros. You can use inline functions instead as it provides type checking and other features. You can take a look here: inline functions |
|||
|
|
In c#, you could use the IDisposable pattern, and implement your Stop() functionality in the Dispose() method, but that would would work if you were using a .net variant of c++. |
|||
|
|
credit to dirkgently for the idea.. I thought I'd fill the rest in
|
||||
|
|