问题 Hi I have a program that deals alot with vectors and indexes of the elements of these vectors, and I was wondering: is there a difference between uint and unsigned int which is better to use one of the above types or just use int as I read some people say compiler does handle int values more efficiently, but if I used int I will have to check always for negative idxs which is pain. do you think iterators to be better? is it more efficient than normal indexing vectorx[idx] ? p.s the software