Jump to content

Recommended Posts

  On 4/26/2019 at 8:31 AM, Rudy Velthuis said:

What do you think I am doing? I am telling him that the discussion is over.

There is one simple and effective way to follow through on that, which is to just stop responding.

  • Like 2

Share this post


Link to post
  On 4/25/2019 at 5:45 PM, AlekXL said:

there are a lot things, in which C++ sucks:

1. lack of try ..finally

Many C++ compilers do offer that as an extension.  C++Builder has 'try/__finally'.  VC++ and CLang have '__try/__finally', etc.  But proper use of RAII trumps the need for try/finally at all.  But if you want, try/finally can be emulated in pure C++ using lambdas and pre-compiler macros (see this, for example).
 

  • Like 4

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×