Why doesn't `std::initializer_list` provide a subscript operator?

前端 未结 2 779
轻奢々
轻奢々 2021-01-01 08:20

Suppose that you are writing a function that accepts an std::initializer_list called list, and that the function requires random access to li

2条回答
  •  一生所求
    2021-01-01 09:05

    According to Bjarne Stroustrup in Section 17.3.4.2 (p. 497) of The C++ Programming Language, 4th Edition:

    Unfortunately, initializer_list doesn't provide subscripting.

    No further reason is given.

    My guess is that it's one of these reasons:

    1. it's an omission, or
    2. because the initializer_list class is implemented with an array and you'd have to do bounds checking to provide safe access, it could more easily be used unsafely if that interface was provided, or
    3. to be consistent with the std algorithms iteration paradigm, or
    4. because initializer_lists are, by their nature, ad-hoc, there's more room for error by addressing them directly

    2 and 4 sound kind of weak. as does 3. My money's on 1.

提交回复
热议问题