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.
取りましょう:
x = list<int>::iterator y = list<int>::const_iterator z = vector<int>::iterator t = vector<int>::const_iterator
次の間に違いはありますか:
++x
x++
++y
y++
++z
z++
++t
t++