I have a silly question! Let's suppose you have a global variable that is used all over the project and you are going to do something when it changes ,for example calling a function .
One simple way is to call your function after every change. But what if this global variable is part of a library and will be used outside .Is there any better solution ?
|
|
|||||||||||||||
|
|
Presumably you want to find when your variable is modified without tracking down ever reference to it and rewriting all that code that depends on it. To do that, change your variable from whatever it is now to a class type that overloads
and want to know when changes are made to
and replace the |
||||
|
|
|
I'd say the easiest way is to create a set method for your variable that calls the function and let it be public, while the variable itself remains private:
|
|||||
|
|
You need to make an accessor function to set your global variable. Then you can call your special function from that accessor instead of requiring all of the callers to do it themselves. |
|||
|
|
|
Just to answer the actual question: No, there isn't a way to determine "when a variable changes" in C++. Technically, if you have enough privilege and the hardware supports it, you could set a "breakpoint on write" for the address of your variable. But it's just a very roundabout way to achieve something that is EASILY achieved by renaming the variable, and then fix all the places where the variable is being accessed to call a function to update the value, and if appropriate also call a function at the same time - as suggested in several answers. |
|||
|
|
|
Since u are saying it may get called from out side also, as Kevin said it is good to have Get() and Set(...) methods . Mainly 2 advantages. 1) Through the set u can call a function or do action whenever value changes. 2) You can avoid directly exposing your variable to the outside directly. |
|||
|
|
