I found that I want to do certain things in my programs only if the variable has changed. I still did something like this:
int x = 1; int initialx = x; ...//code that may or may not change the value of x if (x!=initialx){ doOneTimeTaskIfVariableHasChanged(); initialx = x; //reset initialx for future change tests }
Is there a better / easier way to do this?
java
Amplify91
source share