c++11 标准模板(STL)(std::basic_ifstream)(四)

定义于头文件 

template<

    class CharT,
    class Traits = std::char_traits

> class basic_ifstream : public std::basic_istream

 类模板 basic_ifstream 实现文件流上的高层输入操作。它将 std::basic_istream 的高层接口赋予基于文件的流缓冲( std::basic_filebuf )。

std::basic_ifstream 的典型实现仅保有一个非导出数据成员: std::basic_filebuf 的实例。

亦定义二个对于常用字符类型的特化:

类型 定义
ifstream basic_ifstream
wifstream basic_ifstream

文件操作

检查流是否有关联文件

std::basic_ifstream::is_open

bool is_open();

(C++11 前)

bool is_open() const;

(C++11 起)

 检查文件流是否有关联文件。

等效地调用 rdbuf()->is_open() 。

参数

(无)

返回值

若文件流有关联文件,则为 true ,否则为 false 。

调用示例

#include 
#include 
#include 
#include 

int main()
{
    std::ifstream ifstream1("test1.txt", std::ios::in);
    std::ifstream ifstream2("test2.txt", std::ios::in);
    std::ifstream ifstream3("test3.txt", std::ios::in);
    std::cout << "ifstream1 is: " << (ifstream1.is_open() ? "true" : "false") << std::endl;
    std::cout << "ifstream2 is: " << (ifstream2.is_open() ? "true" : "false") << std::endl;
    std::cout << "ifstream3 is: " << (ifstream3.is_open() ? "true" : "false") << std::endl;

    std::cout << std::endl;
    return 0;
}

输出

c++11 标准模板(STL)(std::basic_ifstream)(四)_第1张图片

打开文件,并将它与流关联

std::basic_ifstream::open

void open( const char *filename,
           ios_base::openmode mode = ios_base::in );

(1)

void open( const std::filesystem::path::value_type *filename,
           ios_base::openmode mode = ios_base::in );

(2) (C++17 起)

void open( const std::string &filename,                                  
           ios_base::openmode mode = ios_base::in );

(3) (C++11 起)

void open( const std::filesystem::path &filename,                                  
           ios_base::openmode mode = ios_base::in );

(4) (C++17 起)

 将名为 filename 的文件打开并与文件流关联。

失败时调用 setstate(failbit) 。

成功时调用 clear() 。 (C++11 起)

1-2) 等效地调用 rdbuf()->open(filename, mode | ios_base::in). (该调用效果上的细节见 std::basic_filebuf::open )。仅若 std::filesystem::path::value_type 非 char 才提供重载 (2) 。 (C++17 起)

3-4) 等效地调用 (1-2) ,如同以 open(filename.c_str(), mode) 。

参数

filename - 要打开的文件名
mode - 指定打开模式。它是位掩码类型,定义下列常量:
常量 解释
app 每次写入前寻位到流结尾
binary 以二进制模式打开
in 为读打开
out 为写打开
trunc 在打开时舍弃流的内容
ate 打开后立即寻位到流结尾

返回值

(无)

调用示例

#include 
#include 
#include 
#include 

int main()
{
    std::string strFileName1 = "test1.txt";
    std::ifstream ifstream1;
    //1-2) 等效地调用 rdbuf()->open(filename, mode | ios_base::in).
    ifstream1.open(strFileName1.c_str(), std::ios::in);

    std::ifstream ifstream2;
    std::string strFileName2 = "test2.txt";
    //3-4) 等效地调用 (1-2) ,如同以 open(filename.c_str(), mode) 。
    ifstream2.open(strFileName2, std::ios::in);

    std::ifstream ifstream3;
    std::string strFileName3 = "test3.txt";
    ifstream2.open(strFileName3, std::ios::in);

    std::cout << "ifstream1 is: " << (ifstream1.is_open() ? "true" : "false") << std::endl;
    std::cout << "ifstream2 is: " << (ifstream2.is_open() ? "true" : "false") << std::endl;
    std::cout << "ifstream3 is: " << (ifstream3.is_open() ? "true" : "false") << std::endl;

    std::cout << std::endl;
    return 0;
}

输出

c++11 标准模板(STL)(std::basic_ifstream)(四)_第2张图片

关闭关联文件

std::basic_ifstream::close

void close();

关闭关联文件。

等效地调用 rdbuf()->close() 。若操作期间出现错误,则调用 setstate(failbit) 。

参数

(无)

返回值

(无)

注意

此函数为 basic_ifstream 的析构函数在流对象离开作用域时调用,通常不直接调用。

调用示例

#include 
#include 
#include 
#include 

int main()
{
    std::ifstream ifstream1("test1.txt", std::ios::in);
    std::ifstream ifstream2("test2.txt", std::ios::in);
    std::ifstream ifstream3("test3.txt", std::ios::in);
    std::cout << "ifstream1 is: " << (ifstream1.is_open() ? "true" : "false") << std::endl;
    std::cout << "ifstream2 is: " << (ifstream2.is_open() ? "true" : "false") << std::endl;
    std::cout << "ifstream3 is: " << (ifstream3.is_open() ? "true" : "false") << std::endl;

    std::cout << std::endl;
    std::cout << "std::ifstream close" << std::endl;
    ifstream1.close();
    ifstream2.close();
    ifstream3.close();

    std::cout << std::endl;

    std::cout << "ifstream1 is: " << (ifstream1.is_open() ? "true" : "false") << std::endl;
    std::cout << "ifstream2 is: " << (ifstream2.is_open() ? "true" : "false") << std::endl;
    std::cout << "ifstream3 is: " << (ifstream3.is_open() ? "true" : "false") << std::endl;

    std::cout << std::endl;
    return 0;
}

输出

c++11 标准模板(STL)(std::basic_ifstream)(四)_第3张图片

非成员函数

特化 std::swap 算法

std::swap(std::basic_ifstream)

template< class CharT, class Traits >
void swap( basic_ifstream &lhs, basic_ifstream &rhs );

为 std::basic_ifstream 特化 std::swap 算法。交换 lhsrhs 的状态。等效地调用 lhs.swap(rhs) 。

参数

lhs, rhs - 要交换状态的流

返回值

(无)

异常

(无)

调用示例

#include 
#include 
#include 
#include 

int main()
{
    std::ifstream ifstream1("test1.txt", std::ios::in);
    std::cout << "ifstream1: " << std::endl;
    if (ifstream1.is_open())
    {
        std::string strLine;
        uint8_t index = 0;
        while (std::getline(ifstream1, strLine))
        {
            std::cout << strLine << std::endl;
            if (index > 1)
            {
                break;
            }
            index++;
        }
    }
    std::cout << std::endl;

    std::ifstream ifstream2("test2.txt", std::ios::in);
    std::cout << "ifstream2: " << std::endl;
    if (ifstream2.is_open())
    {
        std::string strLine;
        uint8_t index = 0;
        while (std::getline(ifstream2, strLine))
        {
            std::cout << strLine << std::endl;
            if (index > 1)
            {
                break;
            }
            index++;
        }
    }
    std::cout << std::endl;

    //为 std::basic_ifstream 特化 std::swap 算法。
    std::swap(ifstream1, ifstream2);

    std::cout << "ifstream1: " << std::endl;
    if (ifstream1.is_open())
    {
        std::string strLine;
        while (std::getline(ifstream1, strLine))
        {
            std::cout << strLine << std::endl;
        }
    }

    std::cout << std::endl;

    std::cout << "ifstream2: " << std::endl;
    if (ifstream2.is_open())
    {
        std::string strLine;
        while (std::getline(ifstream2, strLine))
        {
            std::cout << strLine << std::endl;
        }
    }

    return 0;
}

输出

c++11 标准模板(STL)(std::basic_ifstream)(四)_第4张图片

你可能感兴趣的:(c++,标准库模板,basic_ifstream,实现文件流上的高层输入操作,文件操作)