What is singular and non-singular values in the context of STL iterators?

前端 未结 4 599
北海茫月
北海茫月 2020-12-06 05:54

The section §24.1/5 from the C++ Standard (2003) reads,

Just as a regular pointer to an array guarantees that there is a pointer value pointing pa

相关标签:
4条回答
  • 2020-12-06 06:39

    Iterators can also have singular values that are not associated with any container.

    I suppose that's its definition.

    How and why dereferenceable values are always nonsingular?

    Because if they wouldn't, dereferencing them would be undefined behavior.

    0 讨论(0)
  • 2020-12-06 06:39

    If I understand this correctly, a singular value for an iterator is essentially the equivalent of an unassigned pointer. It's an iterator that hasn't been initialized to point anywhere and thus has no well-defined element it's iterating over. Declaring a new iterator that isn't set up to point to an element of a range, for example, creates that iterator as a singular iterator.

    As the portion of the spec alludes to, singular iterators are unsafe and none of the standard iterator operations, such as increment, assignment, etc. can be used on them. All you can do is assign them a new value, hopefully pointing them at valid data.

    I think the reason for having this definition is so that statements like

    set<int>::iterator itr;
    

    Can be permitted by the spec while having standardized meaning. The term "singular" here probably refers to the mathematical definition of a singularity, which is also called a "discontinuity" in less formal settings.

    0 讨论(0)
  • 2020-12-06 06:42

    What is singular value and nonsingular value? How are they defined? And where?

    Let us use the simplest incarnation of an Iterator: the pointer.

    For a pointer:

    • the singular value alluded to is the NULL value an uninitialized value.
    • a non-singular value is an explicitly initialized value, it may not be dereferencable still (the past-the-end pointer shall not be dereferenced)

    I would say that the NULL pointer is a singular value, though not the only one, since it represents the absence of value.

    What is the equivalence for regular iterators ?

    std::vector<int>::iterator it;, the default constructor of most iterators (those linked to a container) create a singular value. Since it's not tied to a container, any form of navigation (increment, decrement, ...) is meaningless.

    How and why dereferenceable values are always nonsingular ?

    Singular values, by definition, represent the absence of a real value. They appear in many languages: Python's None, C#'s null, C's NULL, C++'s std::nullptr. The catch is that in C or C++, they may also be simple garbage... (whatever was there in memory before)

    Is a default constructed iterator a singular value ?

    Not necessarily, I guess. It is not required by the standard, and one could imagine the use of a sentinel object.

    0 讨论(0)
  • 2020-12-06 06:50

    Have a look at What is an iterator's default value?.

    As the quote indicates, singular values are iterator values that are not associated with any container. A singular value is almost useless: you can't advance it, dereference it, etc. One way (the only way?) of getting a singular iterator is by not initializing it, as shown in templatetypedef's answer.

    One of the useful things you can do with a singular iterator, is assign it a non-singular value. When you do that you can do whatever else you want with it.

    The non-singular values are, almost by definition, iterator values that are associated with a container. This answers why dereferenceable values are always non-singular: iterators that do not point to any container cannot be dereferenced (what element would this return?).

    As Matthieu M. correctly noted, non-singular values may still be non-dereferenceable. An example is the past-the-end iterator (obtainable by calling container.end()): it is associated with a container, but still cannot be referenced.

    I can't say where these terms are defined. However, Google has this to say about "define: singular" (among other definitions):

    remarkable: unusual or striking
    

    I suppose this can explain the terminology.

    0 讨论(0)
提交回复
热议问题