• Class / Function / Type

      std::
    • Header file

      <>
    • Other / All

    最終更新日時(UTC):
    が更新

    履歴 編集

    function template
    <stack>

    std::operator==

    namespace std {
      template <class T, class Container>
      bool operator==(const stack<T, Container>& x, const stack<T, Container>& y);
    }
    

    概要

    stack の等値比較を行う。

    戻り値

    x.c == y.c

    #include <iostream>
    #include <stack>
    
    int main()
    {
      std::stack<int> x;
      x.push(3);
      x.push(1);
      x.push(4);
    
      std::stack<int> y;
      y.push(3);
      y.push(1);
      y.push(4);
    
      std::cout << std::boolalpha << (x == y) << std::endl;
    }
    

    出力

    true
    

    参照