首页 > 其他分享 >实验6 模板类和文件I/O

实验6 模板类和文件I/O

时间:2022-11-30 16:22:47浏览次数:37  
标签:文件 int Vector 实验 output include 模板 size

实验目的

  1. 体验模板函数、模板类的编写,从多态角度理解模板函数和模板类(类型作为参数)
  2. 体验标准I/O流类、文件I/O流类、字符串I/O流类的用法,能正确使用
  3. 针对问题场景,能正确、合理使用流类库对I/O数据进行格式化和读、写操作
  4. 训练综合应用类的封装、继承、多态特性及现代C++标准库编写正确、高效、安全代码

实验内容

1.实验任务4

实验代码

Vector.hpp

#pragma once
using std::cout;
using std::endl;
template <typename T>
class Vector
{
private:
    int size;
    T *p;

public:
    Vector(int);
    Vector(int, T);
    ~Vector();
    int get_size() const { return size; }
    T &at(int index)
    {
        return p[index];
    }
    T &operator[](int index)
    {
        return p[index];
    }
    Vector(const Vector<T> &);
    friend void output(Vector &x)
    {
        int i;
        for (i = 0; i < x.size - 1; i++)
        {
            cout << x.p[i] << ", ";
        }
        cout << x.p[i] << endl;
    }
};

template <typename T>
Vector<T>::Vector(int n) : size{n}
{
    p = new T[n];
}

template <typename T>
Vector<T>::Vector(int n, T x) : size{n}
{
    p = new T[n];
    for (auto i = 0; i < n; i++)
    {
        p[i] = x;
    }
}

template <typename T>
Vector<T>::~Vector()
{
    delete[] p;
}

template <typename T>
Vector<T>::Vector(const Vector<T> &vp) : size{vp.size}
{
    p = new T[size];
    for (auto i = 0; i < get_size(); i++)
    {
        p[i] = vp.p[i];
    }
}

task4.cpp

#include <iostream>
#include "Vector.hpp"

void test() {
    using namespace std;

    int n;
    cin >> n;
    
    Vector<double> x1(n);
    for(auto i = 0; i < n; ++i)
        x1.at(i) = i * 0.7;

    output(x1);

    Vector<int> x2(n, 42);
    Vector<int> x3(x2);

    output(x2);
    output(x3);

    x2.at(0) = 77;
    output(x2);

    x3[0] = 999;
    output(x3);
}

int main() {
    test();
    return 0;
}

测试结果

test1


test2

2.实验任务5

实验代码

task5.cpp

#include <iostream>
#include <fstream>
#include <iomanip>
using namespace std;

int main(int argc, char const *argv[])
{
    ofstream outFile;
    outFile.open("cipher_key.txt");
    if (!outFile.is_open())
    {
        cout << "fail to open data1.dat\n";
        return 1;
    }
    for (int i = 0; i < 27; i++)
    {
        if (!i)
        {
            cout << "   ";
            outFile << "   ";
            for (int j = 97; j < 123; j++)
            {
                cout << char(j) << " ";
                outFile << char(j) << " ";
            }
            cout << endl;
            outFile << endl;
            continue;
        }
        cout << setiosflags(ios_base::left) << setw(2) << i << " ";
        outFile << setiosflags(ios_base::left) << setw(2) << i << " ";
        for (int j = i; j < i + 26; j++)
        {
            cout << setiosflags(ios_base::left) << setw(2) << char(65 + j % 26);
            outFile << setiosflags(ios_base::left) << setw(2) << char(65 + j % 26);
        }
        cout << endl;
        outFile << endl;
    }
    outFile.close();
    return 0;
}

测试结果

test3


test4

实验总结

模板类和文件操作基本掌握,继承和多态希望还能再练练。

标签:文件,int,Vector,实验,output,include,模板,size
From: https://www.cnblogs.com/PhantomGmc/p/16938785.html

相关文章

  • web实验四(二)
    web实验四(二)基于华为鲲鹏云服务器CentOS中(或Ubuntu),使用LinuxSocket实现:1.Web服务器的客户端服务器,提交程序运行截图2.实现GET即可,请求,响应要符合HTTP协议规范3.服......
  • 实验四 Web服务器2
    基于华为鲲鹏云服务器CentOS中(或Ubuntu),使用LinuxSocket实现:1.Web服务器的客户端服务器,提交程序运行截图2.实现GET即可,请求,响应要符合HTTP协议规范3.服务器部署到......
  • 焱融科技为国家重点实验室打造海量高性能存储
    中国科学院大气物理研究所大气科学和地球流体力学数值模拟国家重点实验室(英文缩写LASG)是国家级重点实验室。LASG主要研究方向为地球气候系统模式的研发与应用;天气气候动力......
  • Linux下用rm误删除文件的三种恢复方法
    Linux下用rm误删除文件的三种恢复方法对于rm,很多人都有惨痛的教训。我也遇到一次,一下午写的程序就被rm掉了,幸好只是一个文件,第二天很快又重新写了一遍。但是很多人可能......
  • SQL server 2016日志文件的清理
    SQL资源对象管理器1、sql库-->属性-->文件得到sql库的数据路径和日志路径,日志名称等;2、新建查询管理器:USEMASTERGOALTERDATABASEais20190925150901SETRECOVERY......
  • 实验六
    task3task3_1.cpp#include<iostream>#include<fstream>#include<array>#defineN5intmain(){usingnamespacestd;array<int,N>x{97,98,99,......
  • 实验四 Web服务器2
    基于华为鲲鹏云服务器CentOS中(或Ubuntu),使用LinuxSocket实现:1.Web服务器的客户端服务器,提交程序运行截图2.实现GET即可,请求,响应要符合HTTP协议规范3.服务器部署到华......
  • HeadFirst设计模式-模板方法模式
     模板方法模式:在一个方法中定义一个算法的骨架,而将一些步骤延迟到子类中。模板方法使得子类可以在不改变算法结构的情况下,重新定义算法中的某些步骤。   ***......
  • 实验四 Web服务器2
    任务详情基于华为鲲鹏云服务器CentOS中(或Ubuntu),使用LinuxSocket实现:Web服务器的客户端服务器,提交程序运行截图实现GET即可,请求,响应要符合HTTP协议规范服务器部署到华......
  • SpringCloud之Config分布式配置文件中心
    分布式系统面临的配置问题:微服务意味着要将单体应用中的业务拆分成一个个子服务,每个服务的粒度相对较小,因此系统中会出现大量的服务。由于每个服务都需要必要的配置信息......