在C++中,seekg
函数用于设置文件读取指针的位置。要实现随机访问,你可以使用seekg
函数来移动指针到文件中的任意位置。以下是一个简单的示例,展示了如何使用seekg
实现随机访问:
#include
#include
int main() {
std::ifstream file("example.txt", std::ios::binary);
if (!file) {
std::cerr << "Error opening file" << std::endl;
return 1;
}
// 设置文件指针位置到第5个字节
file.seekg(5, std::ios::beg);
// 读取当前位置的字符
char ch;
file.get(ch);
std::cout << "Character at position 5: " << ch << std::endl;
// 设置文件指针位置到第10个字节
file.seekg(10, std::ios::beg);
// 读取当前位置的字符
file.get(ch);
std::cout << "Character at position 10: " << ch << std::endl;
// 关闭文件
file.close();
return 0;
}
在这个示例中,我们首先打开一个名为example.txt
的文件。然后,我们使用seekg
函数将文件指针分别设置到第5个字节和第10个字节的位置,并使用get
函数读取这些位置的字符。最后,我们关闭文件。
注意,seekg
函数的第一个参数是偏移量,第二个参数是起始位置。起始位置可以是std::ios::beg
(从文件开头开始计算偏移量)、std::ios::cur
(从当前文件指针位置开始计算偏移量)或std::ios::end
(从文件末尾开始计算偏移量)。