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

  • Home
  • SEARCH
  • 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 am using java language,I have a method that is supposed to return an
I have a table that has a column with type of dateTime(I'm using SQL
It is known that all functional languages share some basic properties like using functions
I am trying to code a flowchart generator for a language using Ruby. I
I'm thinking in particular of how to display pagination controls, when using a language
Assume I'm using an interpreted language to power a medium or large application, and
How can I detect keyboard event in C language without using third party libraries?
If you are working in PHP (or I guess any programming language) and using
I have started using Jython as it seems to be a excellent language, and
I'm using an Oracle database with a collation different to my OS language. I'm

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.