Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

What is the principle of C++ std::initializer_list implementation?

2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly explains "what is the principle of C++ std::initializer_list implementation". The content of the article is simple and clear, and it is easy to learn and understand. Please follow the editor's train of thought to study and learn "what is the implementation principle of C++ std::initializer_list".

The implementation principle of std::initializer_list:

/ / initializer_list template class initializer_list {public: typedef _ E value_type; typedef const_ E& reference; typedef const_ E& const_reference; typedef size_t size_type; typedef const_ E* iterator; typedef const_ E* const_iterator; private: iterator _ M_array Size_type _ The compiler can call a private constructor. Constexpr initializer_list (const_iterator _ a, size_type _ l): _ M_array (_ a), _ M_len (_ l) {} constexpr initializer_list () noexcept: _ M_array (0), _ M_len (0) {} / / Number of elements. Constexpr size_type size () const noexcept {return _ First element;} / First element. Constexpr const_iterator begin () const noexcept {return _ multiple array;} / / One past the last element. End () const noexcept {return begin () + size ();}}

He believes that the compiler constructs a std::array before constructing std::initializer_list, and then uses begin () and size () of std::array to construct std::initializer_list. There is a mistake in this statement. Instead of constructing std::array, the compiler constructs an array const T [N] directly on the stack. Arrays constructed on the stack, like other variables, are automatically destructed when they leave scope, eliminating the need to manually manage memory, so there is no need to use std::array at all.

This is the description of cppreference.com:

The underlying array is a temporary array of type const T [N]

Specifically, it is an ordinary array.

This is the description of N3337:

An object of type initializer_list provides access to an array of objects of type const E.

It didn't say std::array.

Thank you for your reading, the above is the content of "what is the implementation principle of C++ std::initializer_list". After the study of this article, I believe you have a deeper understanding of what the implementation principle of C++ std::initializer_list is, and the specific use needs to be verified in practice. Here is, the editor will push for you more related knowledge points of the article, welcome to follow!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report