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.
クラスにはキューがあり、クラスのコンストラクターでキュー サイズを設定する必要があります。これは可能ですか?
私がやりたいことだけのアイデア:
class Test { queue<int> age_queue; Test(int queue_size):age_queue(queue_size){} };
試す
class Test { queue<int> age_queue; Test(int queue_size):age_queue(deque<int>(queue_size)){} };