我看到了代码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 ++有这个语法吗?