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.
以下は、「強化された for ループ」を使用したfor forward ループの例です。std::deque
std::deque
int a[] = { 0, 1, 2, 3, 4, 5 }; std::deque<int> dq(a, a+6); for(auto i : dq) std::cout << i << ", ";
特定のSTLコンテナに対して逆に反復する「強化されたforループ」の正しい構文(可能な場合)は何ですか?