实训C++语言设计——文件和流

熟悉流类库中常用的类及其成员函数的用法,学习到了标准的输入输出及其格式的控制,学习到了文件的应用方式,有二进制文件和文本文件.

算法:无
方法:无
程序:
//Lab11_1.cpp
#include<fstream>
using namespace std;
#define D(a) T<<#a<<endl;a
ofstream T("output.out");
void main()
{ D(int i=53;)
D(float f=4700113.141593;)
char *s="Is there any more?";
D(T.setf(ios::unitbuf);)
D(T.setf(ios::showbase);)
D(T.setf(ios::uppercase);)
D(T.setf(ios::showpos);)
D(T<<i<<endl;)
D(T.setf(ios::hex,ios::basefield);)
D(T<<i<<endl;)
D(T.unsetf(ios::showbase);)
D(T.setf(ios::oct,ios::basefield);)
D(T<<i<<endl;)
D(T.unsetf(ios::showbase);)
D(T.setf(ios::dec,ios::basefield);)
D(T.setf(ios::left,ios::adjustfield);)

D(T.fill('0');)
D(T<<"fill char:"<<T.fill()<<endl;)
D(T.width(8);)
T<<i<<endl;
D(T.setf(ios::right,ios::adjustfield);)
D(T.width(8);)
T<<i<<endl;
D(T.setf(ios::internal,ios::adjustfield);)
D(T.width(8);)
T<<i<<endl;
D(T<<i<<endl;) //Without width(10)

D(T.unsetf(ios::showpos);)
D(T.setf(ios::showpoint);)
D(T<<"prec="<<T.precision()<<endl;)
D(T.setf(ios::scientific,ios::floatfield);)
D(T<<endl<<f<<endl;)
D(T.setf(ios::fixed,ios::floatfield);)
D(T<<f<<endl;)
D(T.setf(0,ios::floatfield);) //Automatic
D(T<<f<<endl;)
D(T.precision(16);)
D(T<<"prec="<<T.precision()<<endl;)
D(T<<endl<<f<<endl;)
D(T.setf(ios::scientific,ios::floatfield);)
D(T<<endl<<f<<endl;)
D(T.setf(ios::fixed,ios::floatfield);)
D(T<<f<<endl;)
D(T.setf(0,ios::floatfield);)
D(T<<f<<endl;)

D(T.width(8);)
T<<s<<endl;
D(T.width(36);)
T<<s<<endl;
D(T.setf(ios::left,ios::adjustfield);)
D(T.width(36);)
T<<s<<endl;

D(T.unsetf(ios::showpoint);)
D(T.unsetf(ios::unitbuf);)
}
//Lab11_1.cpp
#include<iostream>
#include<string>
using namespace std;
#include <fstream>

int main()
{ char a1[32],a2[32];
char str[80];
char*p;
cout<<"建立文件"<<endl;
cout<<"输入你的文件名(要加后缀)"<<endl;
cin.getline(a1,32);
p=a1;
cout<<"输入文件内容:"<<endl;
cin.getline(str,80);

ofstream File(p,ios::binary);
if(! File)
{ cout<<"不能打开该文件!"<<endl;
cout<<"退出程序!"<<endl;
exit(1);}
else
{ File.write(str,80);
File.close();
}
cout<<"/n输入你要打开的文件名(要加后缀)"<<endl;
cin.getline(a2,32);
p=a2;
ifstream inFile(p,ios::binary);
if(! inFile)
{ cout<<"/n不存在该文件"<<endl;
cout<<"退出程序!"<<endl;
exit(1);
}
else
{ string q;
inFile>>q;
cout<<"文件"<<p<<"中的内容是:"<<q;
File.close();
}
cout<<endl;
return 0;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
好的,我会尽力回答你的问题。首先,我们来设计一个 Student 学生类,包括以下属性: - 学号(id) - 姓名(name) - 年龄(age) - 性别(gender) - 成绩(score) 首先,我们可以定义一个 Student 类,如下所示: ```cpp class Student { public: int id; string name; int age; string gender; double score; }; ``` 接下来,我们可以通过继承来创建一个更具体的类,比如说 Undergraduate 本科生类。我们可以从 Student 类中继承属性,并添加一些新的属性和方法,如下所示: ```cpp class Undergraduate : public Student { public: string major; int year; void display() { cout << "ID: " << id << endl; cout << "Name: " << name << endl; cout << "Age: " << age << endl; cout << "Gender: " << gender << endl; cout << "Score: " << score << endl; cout << "Major: " << major << endl; cout << "Year: " << year << endl; } }; ``` 在这个例子中,我们使用了 public 继承,使得 Undergraduate 类可以访问 Student 类中的公有成员。我们还定义了一个新的方法 display,用于打印出 Undergraduate 类中的所有属性。 最后,我们可以通过重写父类的方法来定制化 Undergraduate 类的行为。比如说,我们可以重写 Student 类中的 display 方法,如下所示: ```cpp class Undergraduate : public Student { public: string major; int year; void display() { cout << "ID: " << id << endl; cout << "Name: " << name << endl; cout << "Age: " << age << endl; cout << "Gender: " << gender << endl; cout << "Score: " << score << endl; cout << "Major: " << major << endl; cout << "Year: " << year << endl; cout << "This is an undergraduate student." << endl; } }; ``` 在这个例子中,我们重写了 display 方法,添加了一行文本,用于提示这是一个本科生对象。 希望这个例子能够帮助你理解 C++ 中的类设计、继承和重写。如果你有任何其他问题,可以随时问我。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值