Hacker News new | ask | show | jobs
by pavlov 1099 days ago
Considering this limitation, I wonder if the syntax could have been something else than assignment. Like maybe:

  using getResource() as res;
1 comments

I agree. If it's assignment then it should work the same as assignment (from the users perspective), otherwise it should have a different syntax.
Also seems like there would be use cases where you don't even want to assign the result, you just want the destructor to run at the end of the scope. Something like:

  using someMutex.lock();
With the assignment syntax it's not obvious to me whether that's allowed.
You assign it to a variable that is then disposed of once it's out of scope?