首页 > 其他分享 >实验三

实验三

时间:2024-11-10 21:46:01浏览次数:1  
标签:std const int 实验 vectorInt include size

task1:
button.hpp:

点击查看代码
#pragma once
#include <iostream>
#include <string>
using std::string;
using std::cout;
// 按钮类
class Button {
public:
    Button(const string &text);
    string get_label() const;
    void click();
private:
    string label;
};
Button::Button(const string &text): label{text} {
}
inline string Button::get_label() const {
    return label;
}
void Button::click() {
    cout << "Button '" << label << "' clicked\n";
}

window.hpp:
点击查看代码
#pragma once
#include "button.hpp"
#include <vector>
#include <iostream>
using std::vector;
using std::cout;
using std::endl;
// 窗口类
class Window{
public:
    Window(const string &win_title);
    void display() const;
    void close();
    void add_button(const string &label);
private:
    string title;
    vector<Button> buttons;
};
Window::Window(const string &win_title): title{win_title} {
    buttons.push_back(Button("close"));
}
inline void Window::display() const {
    string s(40, '*');
    cout << s << endl;
    cout << "window title: " << title << endl;
    cout << "It has " << buttons.size() << " buttons: " << endl;
    for(const auto &i: buttons)
        cout << i.get_label() << " button" << endl;
    cout << s << endl;
}
void Window::close() {
    cout << "close window '" << title << "'" << endl;
    buttons.at(0).click();
}
void Window::add_button(const string &label) {
    buttons.push_back(Button(label));
}

task1.cpp
点击查看代码
#include "window.hpp"
#include <iostream>
using std::cout;
using std::cin;
void test() {
    Window w1("new window");
    w1.add_button("maximize");
    w1.display();
    w1.close();
}
int main() {
    cout << "用组合类模拟简单GUI:\n";
    test();
}

自定义了Button类、Window类
使用了string和vector

task2:
task2.cpp

点击查看代码
#include <iostream>
#include <vector>
using namespace std;
void output1(const vector<int> &v) {
    for(auto &i: v)
        cout << i << ", ";
    cout << "\b\b \n";
}
void output2(const vector<vector<int>> v) {
    for(auto &i: v) {
        for(auto &j: i)
            cout << j << ", ";
        cout << "\b\b \n";
   }
}
void test1() {
    vector<int> v1(5, 42);
    const vector<int> v2(v1);
    v1.at(0) = -999;
    cout << "v1: ";  output1(v1);
    cout << "v2: ";  output1(v2);
    cout << "v1.at(0) = " << v1.at(0) << endl;
    cout << "v2.at(0) = " << v2.at(0) << endl;
}
void test2() {
    vector<vector<int>> v1{{1, 2, 3}, {4, 5, 6, 7}};
    const vector<vector<int>> v2(v1);
    v1.at(0).push_back(-999);
    cout << "v1: \n";  output2(v1);
    cout << "v2: \n";  output2(v2);
    vector<int> t1 = v1.at(0);
    cout << t1.at(t1.size()-1) << endl;
    
    const vector<int> t2 = v2.at(0);
    cout << t2.at(t2.size()-1) << endl;
}
int main() {
    cout << "测试1:\n";
    test1();
    cout << "\n测试2:\n";
    test2();
}

第一行定义一个长度为5值全为42的整形vector对象v1,第二行使用v1复制构造了一个vector对象v2,第三行对v1的第一个值进行修改
task3:
vectorInt.hpp

点击查看代码
#pragma once
#include <iostream>
#include <cassert>
using std::cout;
using std::endl;
// 动态int数组对象类
class vectorInt{
public:
    vectorInt(int n);
    vectorInt(int n, int value);
    vectorInt(const vectorInt &vi);
    ~vectorInt();
    int& at(int index);
    const int& at(int index) const;
    vectorInt& assign(const vectorInt &v);
    int get_size() const;
private:
    int size;
    int *ptr;       // ptr指向包含size个int的数组
};
vectorInt::vectorInt(int n): size{n}, ptr{new int[size]} {
}
vectorInt::vectorInt(int n, int value): size{n}, ptr{new int[size]} {
    for(auto i = 0; i < size; ++i)
        ptr[i] = value;
}
vectorInt::vectorInt(const vectorInt &vi): size{vi.size}, ptr{new int[size]} 
{
    for(auto i = 0; i < size; ++i)
        ptr[i] = vi.ptr[i];
}
vectorInt::~vectorInt() {
    delete [] ptr;
}
const int& vectorInt::at(int index) const {
    assert(index >= 0 && index < size);
    return ptr[index];
}
int& vectorInt::at(int index) {
    assert(index >= 0 && index < size);
    return ptr[index];
}
vectorInt& vectorInt::assign(const vectorInt &v) {  
    delete[] ptr;       // 释放对象中ptr原来指向的资源
    size = v.size;
    ptr = new int[size];
    for(int i = 0; i < size; ++i)
        ptr[i] = v.ptr[i];
    return *this;
}
int vectorInt::get_size() const {
    return size;
}
int vectorInt::get_size() const {
    return size;
}
task3.cpp
点击查看代码
#include "vectorInt.hpp"
#include <iostream>
using std::cin;
using std::cout;
void output(const vectorInt &vi) {
    for(auto i = 0; i < vi.get_size(); ++i)
        cout << vi.at(i) << ", ";
    cout << "\b\b \n";
}
void test1() {
    int n;
    cout << "Enter n: ";
    cin >> n;
    vectorInt x1(n);
    for(auto i = 0; i < n; ++i)        x1.at(i) = i*i;
    cout << "x1: ";  output(x1);
    vectorInt x2(n, 42);
    vectorInt x3(x2);
    x2.at(0) = -999;
    cout << "x2: ";  output(x2);
    cout << "x3: ";  output(x3);
}
void test2() {
    const vectorInt  x(5, 42);
    vectorInt y(10, 0);
    cout << "y: ";  output(y);
    y.assign(x);
    cout << "y: ";  output(y);
    
    cout << "x.at(0) = " << x.at(0) << endl;
    cout << "y.at(0) = " << y.at(0) << endl;
}
int main() {
    cout << "测试1: \n";
    test1();
    cout << "\n测试2: \n";
    test2();
}

深复制
task4

点击查看代码
#include <iostream>
#include <cassert>
using std::cout;
using std::endl;

class Matrix {
private:
    int lines;      // 矩阵对象内元素行数
    int cols;       // 矩阵对象内元素列数
    double *ptr;



class Matrix {
public:
    Matrix(int n, int m);           // 构造函数,构造一个n*m的矩阵, 初始值为value
    Matrix(int n);                  // 构造函数,构造一个n*n的矩阵, 初始值为value
    Matrix(const Matrix &x);        // 复制构造函数, 使用已有的矩阵X构造
    ~Matrix();
    void set(const double *pvalue);         // 用pvalue指向的连续内存块数据按行为
矩阵赋值
    void clear();                           // 把矩阵对象的值置0
    
    const double& at(int i, int j) const;   // 返回矩阵对象索引(i,j)的元素const引用
    double& at(int i, int j);               // 返回矩阵对象索引(i,j)的元素引用
 
    int get_lines() const;                  // 返回矩阵对象行数
    int get_cols() const;                   // 返回矩阵对象列数
    void display() const; 
};
    // 析构函数
    ~Matrix() {
        for (int i = 0; i < lines; ++i) delete[] ptr[i];
        delete[] ptr;
    }

task4.cpp
点击查看代码
#include "matrix.hpp"
#include <iostream>
#include <cassert>
using std::cin;
using std::cout;
using std::endl;
const int N = 1000;
// 输出矩阵对象索引为index所在行的所有元素
void output(const Matrix &m, int index) {
    assert(index >= 0 && index < m.get_lines());
    for(auto j = 0; j < m.get_cols(); ++j)
        cout << m.at(index, j) << ", ";
    cout << "\b\b \n";
}
void test1() {
    double x[1000] = {1, 2, 3, 4, 5, 6, 7, 8, 9};
    int n, m;
    cout << "Enter n and m: ";
    cin >> n >> m;
    Matrix m1(n, m);    // 创建矩阵对象m1, 大小n×m
    m1.set(x);          // 用一维数组x的值按行为矩阵m1赋值
    Matrix m2(m, n);    // 创建矩阵对象m1, 大小m×n
    m2.set(x);          // 用一维数组x的值按行为矩阵m1赋值
    Matrix m3(2);       // 创建一个2×2矩阵对象
    m3.set(x);          // 用一维数组x的值按行为矩阵m4赋值
    cout << "矩阵对象m1: \n";   m1.display();  cout << endl;
    cout << "矩阵对象m2: \n";   m2.display();  cout << endl;
    cout << "矩阵对象m3: \n";   m3.display();  cout << endl;
}
void test2() {    Matrix m1(2, 3);
    m1.clear();
    
    const Matrix m2(m1);
    m1.at(0, 0) = -999;
    cout << "m1.at(0, 0) = " << m1.at(0, 0) << endl;
    cout << "m2.at(0, 0) = " << m2.at(0, 0) << endl;
    cout << "矩阵对象m1第0行: "; output(m1, 0);
    cout << "矩阵对象m2第0行: "; output(m2, 0);
}
int main() {
    cout << "测试1: \n";
    test1();
    cout << "测试2: \n";
    test2();
}
task5 user.hpp
点击查看代码
#ifndef USER_HPP
#define USER_HPP

#include <iostream>
#include <string>

class User {
private:
    std::string name;
    std::string password;
    std::string email;

public:
    // 单参数构造函数,默认密码和邮箱
    User(const std::string& name)
        : name(name), password("123456"), email("") {}

    // 三参数构造函数
    User(const std::string& name, const std::string& password, const std::string& email)
        : name(name), password(password), email(email) {}

    // 设置邮箱
    void set_email();

    // 修改密码
    void change_password();

    // 显示用户信息
    void display() const;
};

#endif // USER_HPP

task5.cpp
点击查看代码
#include "user.hpp"
#include <iostream>
#include <vector>
#include <string>
using std::cin;
using std::cout;
using std::endl;
using std::vector;
using std::string;
void test() {
    vector<User> user_lst;
    User u1("Alice", "2024113", "[email protected]");
    user_lst.push_back(u1);
    cout << endl;
    User u2("Bob");
    u2.set_email();
    u2.change_password();
    user_lst.push_back(u2);
    cout << endl;
    User u3("Hellen");
    u3.set_email();
    u3.change_password();
    user_lst.push_back(u3);    cout << endl;
    cout << "There are " << user_lst.size() << " users. they are: " << endl;
    for(auto &i: user_lst) {
        i.display();
        cout << endl;
   }
}
int main() {
    test();
}

标签:std,const,int,实验,vectorInt,include,size
From: https://www.cnblogs.com/zhd20030803/p/18538593

相关文章

  • 实验3
    Test1:#pragmaonce#include<iostream>#include<string>usingstd::string;usingstd::cout;//按钮类classButton{public:Button(conststring&text);stringget_label()const;voidclick();private:stringlabel;......
  • 实验3
    1#pragmaonce2#include"button.hpp"3#include<vector>4#include<iostream>56usingstd::vector;7usingstd::cout;8usingstd::endl;910//窗口类11classwindow{12public:13window(conststring&win_title)......
  • 实验3
    任务一:button.hpp:#pragmaonce#include<iostream>#include<string>usingstd::string;usingstd::cout;//按钮类classButton{public:Button(conststring&text);stringget_label()const;voidclick();private:string......
  • 实验3
    任务1:button.hpp:1#pragmaonce23#include<iostream>4#include<string>56usingstd::string;7usingstd::cout;89classButton{10public:11Button(conststring&text);12stringget_label()const;13void......
  • 20222402 2024-2025-1《网络与系统攻防技术》实验四实验报告
    一、实验内容本周学习内容计算机病毒(Virus):通过感染文件(可执行文件、数据文件、电子邮件等)或磁盘引导扇区进行传播,一般需要宿主程序被执行或人为交互才能运行蠕虫(Worm):一般为不需要宿主的单独文件,通过网络传播,自动复制通常无需人为交互便可感染传播恶意移动代码(Malicio......
  • 实验4
    任务11#include<stdio.h>2#defineN43#defineM245voidtest1(){6intx[N]={1,9,8,4};7inti;89printf("sizeof(x)=%d\n",sizeof(x));1011for(i=0;i<N;++i)12prin......
  • 20222409 2024-2025-1 《网络与系统攻防技术》实验四实验报告
    1.实验内容1.1本周学习内容本周学习了恶意代码分析的基本方法,静态分析和动态分析的核心概念。静态分析主要通过代码结构和API调用等特征来识别恶意行为,动态分析则使用沙箱等环境运行代码,观察其行为。通过实验学习了IDAPro和ProcessMonitor等工具的基本操作。1.2实践内容......
  • 图像处理实验二(Image Understanding and Basic Processing)
            ......
  • 20222319 2024-2025-1 《网络与系统攻防技术》实验四实验报告
    1.实验要求1.1实验内容一、恶意代码文件类型标识、脱壳与字符串提取对提供的rada恶意代码样本,进行文件类型识别,脱壳与字符串提取,以获得rada恶意代码的编写作者,具体操作如下:(1)使用文件格式和类型识别工具,给出rada恶意代码样本的文件格式、运行平台和加壳工具;(2)使用超级巡警脱壳......
  • 实验三
    任务一button.hpp#pragmaonce#include<iostream>#include<string>usingstd::string;usingstd::cout;//按钮类classButton{public:Button(conststring&text);stringget_label()const;voidclick();private:stringla......