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 (vector<int>::size_type ix = 0; ix ! = ivec.size(); ++ix) { ivec[ix] = 0; }
intここで が使用されない理由は理解していますが、使用しないのはなぜsize_tですか ?
int
size_t
vector<int>::size_typeの代わりにどのような状況で使用する必要がありsize_tますか?
vector<int>::size_type
私はそれらが同じだと思います。
typedef typename Allocator::size_type size_type;