c++读取文件中的数据

c++读取文件中的数据

文件中的内容是一些数据
30 31 32 33 34 35 36 37 38 39 40
41 42 43 44 45 46 47 48 49 50 51
读取文件中数据的函数
#include 
#include 

std::vector<int> loadFile(char* filename)
{
    std::ifstream ifs;
    ifs.open(filename, std::ios::in);
	std::vector<int> waveY;
    if(ifs.is_open())
    {
        int tmp = 0;
        while (ifs >> tmp)
        {
            waveY.push_back(tmp);
        }
    }
    ifs.close();
    return waveY;
}

你可能感兴趣的:(c++,文件操作)