C++,VS创建公共类

生成-》类,然后弹出向导,在类名中填写类的名称

C++,VS创建公共类_第1张图片

在头文件中的开头#include<>包括相应的

#pragma once
#include <iostream>
#include <string>
#include <windows.h>
using namespace std;

在头文件中声明函数,如果只是想整个函数,并不像包在类里面,可以用static

static string  read(ifstream &T);

在cpp文件中实现函数,

string dataprocessing::read(ifstream &T) //pass the file stream to the function
{  
	//the method to read a file, that I showed you before
	string a;
	char ch;
	//	a.append(" ")ki
	while(!T.eof())
	{
		T.get(ch);
		//cout<<ch;
		if(ch=='\n'||T.eof()){
			break;
		}
		string tt="a";
		tt[0]=ch;
		a.append(tt);
	}
	return a;
}

,,,然后调用相应的函数
string a=dataprocessing::read(ofile);


你可能感兴趣的:(数据处理)