Movatterモバイル変換


[0]ホーム

URL:


cppreference.com
Namespaces
Variants
    Actions

      std::queue<T,Container>::push

      From cppreference.com
      <cpp‎ |container‎ |queue

      [edit template]
       
       
       
       
      void push(const value_type& value);
      (1)
      void push( value_type&& value);
      (2)(since C++11)

      Pushes the given elementvalue to the end of the queue.

      1) Equivalent to:c.push_back(value).
      2) Equivalent to:c.push_back(std::move(value)).

      Contents

      [edit]Parameters

      value - the value of the element to push

      [edit]Return value

      (none)

      [edit]Complexity

      Equal to the complexity ofContainer::push_back.

      [edit]Example

      This section is incomplete
      Reason: no example

      [edit]See also

      (C++11)
      constructs element in-place at the end
      (public member function)[edit]
      removes the first element
      (public member function)[edit]
      Retrieved from "https://en.cppreference.com/mwiki/index.php?title=cpp/container/queue/push&oldid=135392"

      [8]ページ先頭

      ©2009-2025 Movatter.jp