Guest User

Untitled

a guest
Dec 12th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. bool xset = false; // где-то на внешнем уровне
  2.  
  3. if (!xset) {
  4. x = newx;
  5. xset = true;
  6. }
  7.  
  8. void setX(int newx) {
  9. static bool xset = false;
  10. if (!xset) {
  11. x = newx;
  12. xset = true;
  13. }
  14. }
Add Comment
Please, Sign In to add comment