The final mechanism in swift similar to C + + and Ruby

Source: Internet
Author: User
Tags hopy

Panda Pig • Patty original or translated works. Welcome reprint, Reprint please indicate the source.
If you feel that the writing is not good please more advice, if you feel good please support a lot of praise. Thank you! Hopy;)

We know that there is a final mechanism in error handling in the C + + and Ruby languages, which happens whenever an error occurs. This is a good time to deal with the finishing touches or cleanup work.

There is also a defer syntax in Swift, followed by closures that can do similar things, except that defer can be used not only in error handling, but in any situation where it needs to be cleaned:

varfalsefunc test(name:String)->Bool{    true    defer {        false    }    print("now isTrue is \(isTrue)")    return"hopy"}test("hopy")print(isTrue)

You can see that IsTrue is true before test exits, and when the function exits, IsTrue becomes false due to the action of the preceding defer statement.

The final mechanism in swift similar to C + + and Ruby

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.