我有一个以整数类型为模板的 C++ 类,例如,
template<typename int_type>
假设在那个类的某个地方,我想用来sscanf
从文件中读取一些值,例如,
int_type num_rows;
fgets( buffer, BUFSIZE, in_file );
sscanf( buffer, "%d", &num_rows);
格式说明符仅在int_type
是内在的 时才能正常工作int
。
有没有更好的方法来处理 general 的格式说明符int_type
?