C++大学教程(第九版)7.19 将7.10节vector对象的例子转换成array对象

本文主要是介绍C++大学教程(第九版)7.19 将7.10节vector对象的例子转换成array对象,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

文章目录

  • 题目
  • 代码
  • 运行截图

题目

(将7.10节vector 对象的例子转换成array 对象)将图7.26中 vector 对象的例子转换成使用array
对象。请消除任何 vector 对象仅有的特性。

分析:

vector对象独有的特性:
1.vector对象长度可变
2.长度不同的vector对象可以直接赋值,以及比较(!=) (==)可以直接使用
3.函数形参无需包括vector对象的长度

转换成array对象需要修改的地方:
1.array对象大小不可变,所以不同长度的array对象需要不同的输入输出函数
2.长度不同的array对象不可以直接赋值;长度相同可以直接赋值;
长度不同的array对象比较时首先比较array对象长度,
若array对象长度不同,则两个array对象一定不同;
若array对象长度相同,才可以比较array对象是否相同(比较方法: 遍历,逐个比较元素大小)
3.不同的输入输出函数面对不同的array对象的长度,自动调用相应大小的函数。
例如:定义了四个函数(两个输入,两个输出)

代码

#include <iostream>
#include <iomanip>
#include <array>
#include <stdexcept>using namespace std;const int arraySize1 = 7;
const int arraySize2 = 10;void outputVector(const array<int, arraySize1> &);
void outputVector(const array<int, arraySize2> &);
void inputVector(array<int, arraySize1> &);
void inputVector(array<int, arraySize2> &);int main()
{array<int, arraySize1> integers1 = {};array<int, arraySize2> integers2 = {};cout << "Size of array integers1 is " << integers1.size()<< "\narray after initialization:" << endl;outputVector(integers1);cout << "Size of array integers2 is " << integers2.size()<< "\narray after initialization:" << endl;outputVector(integers2);cout << "\nEnter 17 integers:" << endl;inputVector(integers1);inputVector(integers2);cout << "\nAfter input,the arrays contain:\n"<< "integers1:" << endl;outputVector(integers1);cout << "integers2:" << endl;outputVector(integers2);cout << "\nEvaluating:integers1 != integers2" << endl;// 比较integers1和integers2是否相同if (integers1.size() != integers2.size()) // 如果两个array对象大小不同,则一定不同{cout << "integers1 and integers2 are not equal" << endl;}else{bool isEqual = true;for (size_t i = 0; i < integers1.size(); i++){if (integers1[i] != integers2[i]){isEqual = false;break;}}if (isEqual){cout << "integers1 and integers2 are equal." << std::endl;}else{cout << "integers1 and integers2 are not equal." << std::endl;}}array<int, arraySize1> integers3 = integers1; // integers3进行初始化,用integers1赋值cout << "\nSize of array integers3 is " << integers3.size()<< "\narray after initialization:" << endl;outputVector(integers3);cout << "\nAssigning integers2 to integers1:" << endl;for (size_t i = 0; i < arraySize1; ++i){ // 将integers2的值赋给integers1integers1[i] = integers2[i];}cout << "integers1:" << endl;outputVector(integers1);cout << "integers2:" << endl;outputVector(integers2);cout << "\nEvaluating:integers1 == integers2" << endl;if (integers1.size() != integers2.size()) // 如果两个array对象大小不同,则一定不同{cout << "integers1 and integers2 are not equal" << endl;}else{bool isEqual = true;for (size_t i = 0; i < integers1.size(); i++){if (integers1[i] != integers2[i]){isEqual = false;break;}}if (isEqual){cout << "integers1 and integers2 are equal." << std::endl;}else{cout << "integers1 and integers2 are not equal." << std::endl;}}cout << "\nintegers1[5] is " << integers1[5] << endl;cout << "\n\nAssigning 1000 to integers1[5]" << endl;integers1[5] = 1000;cout << "integers1:" << endl;outputVector(integers1);try{cout << "\nAttempt to display integers1.at(15)" << endl;cout << integers1.at(15) << endl;}catch (out_of_range &ex){cerr << "An exception occurred: " << ex.what() << endl;}cout << "\nCurrent integers3 size is: " << integers3.size() << endl;// integers3.push_back(1000);//array对象无法添加新元素,所以此处代码直接注释掉// cout << "New integers3 size is:" << integers3.size() << endl;outputVector(integers3);return 0;
}void outputVector(const array<int, arraySize1> &items)
{ // integers1和integers3输出for (int item : items){cout << item << " ";}cout << endl;
}void outputVector(const array<int, arraySize2> &items)
{ // integers2输出for (int item : items){cout << item << " ";}cout << endl;
}void inputVector(array<int, arraySize1> &items)
{ // integers1和integers3输入for (int &item : items)cin >> item;
}void inputVector(array<int, arraySize2> &items)
{ // integers2输入for (int &item : items)cin >> item;
}

运行截图

在这里插入图片描述
在这里插入图片描述

如有问题,欢迎评论一起交流,正在努力学习中~~

这篇关于C++大学教程(第九版)7.19 将7.10节vector对象的例子转换成array对象的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/652612

相关文章

Elasticsearch 在 Java 中的使用教程

《Elasticsearch在Java中的使用教程》Elasticsearch是一个分布式搜索和分析引擎,基于ApacheLucene构建,能够实现实时数据的存储、搜索、和分析,它广泛应用于全文... 目录1. Elasticsearch 简介2. 环境准备2.1 安装 Elasticsearch2.2 J

Linux系统中卸载与安装JDK的详细教程

《Linux系统中卸载与安装JDK的详细教程》本文详细介绍了如何在Linux系统中通过Xshell和Xftp工具连接与传输文件,然后进行JDK的安装与卸载,安装步骤包括连接Linux、传输JDK安装包... 目录1、卸载1.1 linux删除自带的JDK1.2 Linux上卸载自己安装的JDK2、安装2.1

Linux卸载自带jdk并安装新jdk版本的图文教程

《Linux卸载自带jdk并安装新jdk版本的图文教程》在Linux系统中,有时需要卸载预装的OpenJDK并安装特定版本的JDK,例如JDK1.8,所以本文给大家详细介绍了Linux卸载自带jdk并... 目录Ⅰ、卸载自带jdkⅡ、安装新版jdkⅠ、卸载自带jdk1、输入命令查看旧jdkrpm -qa

Java使用Curator进行ZooKeeper操作的详细教程

《Java使用Curator进行ZooKeeper操作的详细教程》ApacheCurator是一个基于ZooKeeper的Java客户端库,它极大地简化了使用ZooKeeper的开发工作,在分布式系统... 目录1、简述2、核心功能2.1 CuratorFramework2.2 Recipes3、示例实践3

springboot简单集成Security配置的教程

《springboot简单集成Security配置的教程》:本文主要介绍springboot简单集成Security配置的教程,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,... 目录集成Security安全框架引入依赖编写配置类WebSecurityConfig(自定义资源权限规则

在java中如何将inputStream对象转换为File对象(不生成本地文件)

《在java中如何将inputStream对象转换为File对象(不生成本地文件)》:本文主要介绍在java中如何将inputStream对象转换为File对象(不生成本地文件),具有很好的参考价... 目录需求说明问题解决总结需求说明在后端中通过POI生成Excel文件流,将输出流(outputStre

MySQL Workbench 安装教程(保姆级)

《MySQLWorkbench安装教程(保姆级)》MySQLWorkbench是一款强大的数据库设计和管理工具,本文主要介绍了MySQLWorkbench安装教程,文中通过图文介绍的非常详细,对大... 目录前言:详细步骤:一、检查安装的数据库版本二、在官网下载对应的mysql Workbench版本,要是

C++ 中的 if-constexpr语法和作用

《C++中的if-constexpr语法和作用》if-constexpr语法是C++17引入的新语法特性,也被称为常量if表达式或静态if(staticif),:本文主要介绍C++中的if-c... 目录1 if-constexpr 语法1.1 基本语法1.2 扩展说明1.2.1 条件表达式1.2.2 fa

JavaScript Array.from及其相关用法详解(示例演示)

《JavaScriptArray.from及其相关用法详解(示例演示)》Array.from方法是ES6引入的一个静态方法,用于从类数组对象或可迭代对象创建一个新的数组实例,本文将详细介绍Array... 目录一、Array.from 方法概述1. 方法介绍2. 示例演示二、结合实际场景的使用1. 初始化二

通过Docker Compose部署MySQL的详细教程

《通过DockerCompose部署MySQL的详细教程》DockerCompose作为Docker官方的容器编排工具,为MySQL数据库部署带来了显著优势,下面小编就来为大家详细介绍一... 目录一、docker Compose 部署 mysql 的优势二、环境准备与基础配置2.1 项目目录结构2.2 基