New Meanings of the old keywords in C ++ 11 (auto, using, extern)

Source: Internet
Author: User

C ++ 11 revised the keywords and added nullptr, constexpr, decltype, default, static_assert, and the original keywords (auto, using, extern) the meaning and purpose were revised. Here we will take a look at the revision of the three keywords auto, using, and extern.

Auto
Automated Variables

Auto a = 12;

Auto B = 12.0f;

Auto c = true;

Auto d = [] (int x)-> int {return 12 ;};

Auto e = std: bind (& func, _ 1 );

Delayed binding

Template <typename T, typename L>

Auto fun (T x, L y)-> decltype (x + y) {return x ;}

Using
Define aliases

Template <typename T>

Using Tlist = std: list <T>;

Using df = void (*) (); (equivalent to typedef void (* df )())

Use external structures

Using A:;

Extern
External Template

Extern template <typename T> void (T t ){}

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.