We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
this::X is late-static-bound semantics for a const type in a class. Similar to static::some_value.
this::X
const type
static::some_value
By contrast, self::X in a type and self::some_value are both resolved to the lexically bound class.
self::X
self::some_value