次の方法で共有


operator== 演算子 (STL)

同じ長さを持つか、time_point の 2 種類のオブジェクトが同じ時点を表すこと duration の 2 種類のオブジェクトが時間間隔を表すかを判定します。

template<class Rep1, class Period1, class Rep2, class Period2>
   constexpr bool operator==(
      const duration<Rep1, Period1>& Left,
      const duration<Rep2, Period2>& Right);
template<class Clock, class Duration1, class Duration2>
   bool operator==(
      const time_point<Clock, Duration1>& Left,
      const time_point<Clock, Duration2>& Right);

パラメーター

  • Left
    time_point の左 duration またはオブジェクト。

  • Right
    time_point の右側の duration またはオブジェクト。

戻り値

最初の関数は同じ長さを持つこと Left と Right が時間間隔を表す場合 true を返します。それ以外の場合、関数は falseを返します。

2 番目の関数は、Left と Right が同じ時点を表す場合 true を返します。それ以外の場合、関数は falseを返します。

必要条件

クロノヘッダー:

名前空間: の std::chrono

参照

関連項目

<chrono>

その他の技術情報

ヘッダー ファイル