vector::size_type死循环问题

void function(const vector* v)
{
    //vector::size_type index = v->size();   //会陷入死循环  size_type是unsigned int类型不能不减为负值
    int index = v->size();
    for (; index >= 0; index--)  //for 执行顺序1243 243 243..for(1;2;3){4}
    {
        if (index % 2 != 0) {
            printf("%d\n", v[index]);
        }
    }
}

你可能感兴趣的:(vector::size_type死循环问题)