什么`我pos;`在C ++中意味着什么?

时间:2014-04-05 07:29:30

标签: c++ grammar

我看到了代码here

关于第137行:

inline bool INISection::ReadString(const char * name, const char * & out) const
{
    //...

    i tag_index;

    if(*name == '\0')
    {
        //...
        tag_index = Iter;
    }
    else
    {
        tag_index = BinarySearch(Tags, Length, name);
    }

    //...

    return false;
}

i tag_index;是什么意思? C ++有这个语法吗?

1 个答案:

答案 0 :(得分:2)

实际上是int_fast32_t。查看include / typdefs.h并在第21行找到它:

typedef int_fast32_t               i;