QPartialOrdering Class

Q부분 주문은 정렬되지 않은 결과를 허용하는 비교 결과를 나타냅니다. 더 보기...

Header: #include <QPartialOrdering>
CMake: find_package(Qt6 REQUIRED COMPONENTS Core)
target_link_libraries(mytarget PRIVATE Qt6::Core)
qmake: QT += core
이후: Qt 6.0

공용 함수

QPartialOrdering(std::partial_ordering stdorder)
std::partial_ordering operator std::partial_ordering() const

정적 공용 멤버

const QPartialOrdering Equivalent
const QPartialOrdering Greater
const QPartialOrdering Less
const QPartialOrdering Unordered
const QPartialOrdering equivalent
const QPartialOrdering greater
const QPartialOrdering less
const QPartialOrdering unordered
(since 6.7) bool is_eq(QPartialOrdering o)
(since 6.7) bool is_gt(QPartialOrdering o)
(since 6.7) bool is_gteq(QPartialOrdering o)
(since 6.7) bool is_lt(QPartialOrdering o)
(since 6.7) bool is_lteq(QPartialOrdering o)
(since 6.7) bool is_neq(QPartialOrdering o)
bool operator!=(QPartialOrdering lhs, QPartialOrdering rhs)
bool operator==(QPartialOrdering lhs, QPartialOrdering rhs)

상세 설명

일반적으로 3방향 비교 함수에서 QPartialOrdering 타입의 값이 반환됩니다. 이러한 함수는 두 객체를 비교하여 순서가 있는지 여부와 순서가 있는 경우 그 순서를 설정합니다. 이 반환 유형은 순서가 부분적임을 나타내기 위해, 즉 모든 값 쌍이 정렬되지 않았음을 나타내기 위해 사용됩니다.

QPartialOrdering에는 다음과 같은 기호 상수로 표현되는 네 가지 값이 있습니다:

  • less 는 왼쪽 피연산자가 오른쪽 피연산자보다 작음을 나타냅니다;
  • equivalent 는 두 피연산자가 같음을 나타냅니다;
  • greater 는 왼쪽 피연산자가 오른쪽 피연산자보다 크다는 것을 나타냅니다;
  • unordered 는 두 피연산자의 순서가 지정되지 않았음을 나타냅니다.

QPartialOrdering은 예를 들어 다음과 같이 인스턴스를 리터럴 0과 비교하는 데 관용적으로 사용됩니다:

// given a, b, c, d as objects of some type that allows for a 3-way compare,
// and a compare function declared as follows:

QPartialOrdering compare(T lhs, T rhs); // defined out-of-line
~~~

QPartialOrdering result = compare(a, b);
if (result < 0) {
    // a is less than b
}

if (compare(c, d) >= 0) {
    // c is greater than or equal to d
}

QPartialOrdering::unordered 을 리터럴 0 과 비교하면 항상 false 결과가 반환됩니다.

Qt::strong_ordering, Qt::weak_ordering, 비교 유형 개요를참조하세요 .

멤버 함수 문서

[constexpr noexcept] QPartialOrdering::QPartialOrdering(std::partial_ordering stdorder)

다음 규칙을 사용하여 stdorder 에서 QPartialOrdering 객체를 구축합니다:

  • std::partial_ordering::less 는 less 로 변환됩니다.
  • std::partial_ordering::equivalent 는 equivalent 로 변환됩니다.
  • std::partial_ordering::greater 는 greater 로 변환됩니다.
  • std::partial_ordering::unordered 는 다음과 같이 변환됩니다. unordered

[constexpr noexcept] std::partial_ordering QPartialOrdering::operator std::partial_ordering() const

다음 규칙을 사용하여 이 QPartialOrdering 값을 std::partial_ordering 객체로 변환합니다:

  • less std::partial_ordering::less로 변환합니다.
  • equivalent std::partial_ordering::equivalent로 변환합니다.
  • greater std::partial_ordering::greater로 변환합니다.
  • unordered std::partial_ordering::unordered로 변환합니다.

멤버 변수 문서

const QPartialOrdering QPartialOrdering::Equivalent

두 피연산자가 동일한 비교 결과를 나타냅니다.

const QPartialOrdering QPartialOrdering::Greater

왼쪽 피연산자가 오른쪽 피연산자보다 큰 비교 결과를 나타냅니다.

const QPartialOrdering QPartialOrdering::Less

왼쪽 피연산자가 오른쪽 피연산자보다 작은 비교 결과를 나타냅니다.

const QPartialOrdering QPartialOrdering::Unordered

두 피연산자 사이에 순서 관계가 없는 비교 결과를 나타냅니다.

const QPartialOrdering QPartialOrdering::equivalent

두 피연산자가 동일한 비교 결과를 나타냅니다.

const QPartialOrdering QPartialOrdering::greater

왼쪽 피연산자가 오른쪽 피연산자보다 큰 비교 결과를 나타냅니다.

const QPartialOrdering QPartialOrdering::less

왼쪽 피연산자가 오른쪽 피연산자보다 작은 비교 결과를 나타냅니다.

const QPartialOrdering QPartialOrdering::unordered

두 피연산자 사이에 순서 관계가 없는 비교 결과를 나타냅니다.

관련 비회원

[constexpr noexcept, since 6.7] bool is_eq(QPartialOrdering o)

[constexpr noexcept, since 6.7] bool is_gt(QPartialOrdering o)

[constexpr noexcept, since 6.7] bool is_gteq(QPartialOrdering o)

[constexpr noexcept, since 6.7] bool is_lt(QPartialOrdering o)

[constexpr noexcept, since 6.7] bool is_lteq(QPartialOrdering o)

[constexpr noexcept, since 6.7] bool is_neq(QPartialOrdering o)

o 를 6개의 관계형 연산자 중 하나의 결과로 변환합니다:

함수연산자
is_eqo == 0
is_neqo != 0
is_lto < 0
is_lteqo <= 0
is_gto > 0
is_gteqo >= 0

이 함수는 std::partial_ordering 와의 호환성을 위해 제공됩니다.

이 함수는 Qt 6.7에 도입되었습니다.

[constexpr noexcept] bool operator!=(QPartialOrdering lhs, QPartialOrdering rhs)

lhsrhs 이 서로 다른 결과를 나타내면 참을 반환하고, 그렇지 않으면 거짓을 반환합니다.

[constexpr noexcept] bool operator==(QPartialOrdering lhs, QPartialOrdering rhs)

lhsrhs 이 동일한 결과를 나타내면 참을 반환하고, 그렇지 않으면 거짓을 반환합니다.

© 2025 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.