Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
C ++でキューを宣言しようとしています:
#include <queue> ...... ...... queue<Process> *readyQueue = new queue<Process>; .......
しかし、私はこのエラーが発生し続けます
「キュー」はこのスコープで宣言されていません
私は何が欠けていますか?もちろん、私は Process 構造体を作成したので、問題はありません。問題は何ですか?