4、C++ 实现文件复制(类实现)

//代码测试 运行环境vc++2010
#include 
#include 
#include 
using namespace std;
class ClsCopyfile{
public :
    ClsCopyfile(char * sfile="",char * dfile="");
    ifstream & funGetInFile();
    ofstream & funGetOutFile();
    friend istream & operator>>(istream & stream,ClsCopyfile & copys)
    {
        string name;
        cout<<"请输入源文件名称(可加路径):"<>copy;
    if(copy.funCopyFile())
    {
        cout<<"数据复制成功!"<


你可能感兴趣的:(C++)