Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 323813
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T09:03:56+00:00 2026-05-12T09:03:56+00:00

When using a language that has try/catch/finally, are D’s failure/success/exit scope statements still useful?

  • 0

When using a language that has try/catch/finally, are D’s failure/success/exit scope statements still useful? D doesn’t seem to have finally which may explain why those statements are used in D. But with a language like C# is it useful? I am designing a language so if I see many pros I’ll add it in.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T09:03:56+00:00Added an answer on May 12, 2026 at 9:03 am

    scope(X) isn’t necessary in the same way that for isn’t necessary provided you have if and goto.

    Here’s a paraphrased example from some code I’ve been writing today:

    sqlite3* db;
    sqlite3_open("some.db", &db);
    scope(exit) sqlite3_close(db);
    
    sqlite3_stmt* stmt;
    sqlite3_prepare_v2(db, "SELECT * FROM foo;", &stmt);
    scope(exit) sqlite3_finalize(stmt);
    
    // Lots of stuff...
    
    scope(failure) rollback_to(current_state);
    make_changes_with(stmt);
    
    // More stuff...
    
    return;
    

    Contrast this to using try/catch:

    sqlite3* db;
    sqlite3_open("some.db", &db);
    try
    {
        sqlite3_stmt* stmt;
        sqlite3_prepare_v2(db, "SELECT * FROM foo;", &stmt);
        try
        {
            // Lots of stuff...
            try
            {
                make_changes_with(stmt);
    
                // More stuff...
            }
            catch( Exception e )
            {
                rollback_to(current_state);
                throw;
            }
        }
        finally
        {
            sqlite3_finalize(stmt);
        }
    }
    finally
    {
        sqlite3_close(db);
    }
    

    The code has turned into spaghetti, spreading the error recovery all over the shop and forcing a level of indentation for every try block. The version using scope(X) is, in my opinion, significantly more readable and easier to understand.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a book, Essential ActionScript 3 (O'Reilly), to learn about using that language.
Are there any high level language that don't support using C++ libraries?
I'm new to it and currently using the visual flow-chart like language that the
I'm creating xml-like mark-up language using System.Xml.XmTextWriter that will be read by a third
I'm writting a PLC language interpreter using C#. That PLC language contains over 20
I'm makin' a scripting language interpreter using PHP. I have this code in that
I was told that using break and continue labels in an OOP language is
I have a table that has a column with type of dateTime(I'm using SQL
I recall when I first read Pragmatic Programmer that they suggested using scripting languages
I am creating a website using ASP.NET that supports multiple languages. For that I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.