I need to create a function which can be executed only once, in each time after the first it won't be executed. I know from c and c++ about static variables that can do the work but I would like is there more elegant way?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
If by "won't be executed" you mean "will do nothing when called more than once", you can create a closure:
|
|||||
|
|
Replace it with a reusable NOOP (no operation) function.
|
|||||||||||
|
|
UnderscoreJs has a function that does that, underscorejs.org/#once
|
|||
|
|
|
|||||||||||||
|
|
try this
|
|||
|
|
|
You could simply have the function "remove itself"
But this may not be the best answer if you don't want to be swallowing errors. You could also do this:
I need it to work like smart pointer, if there no elements from type A it can be executed, if there is one or more A elements the function can't be executed.
|
|||||||
|
