C++ 基础练习 - Chapter 5(英文版)

Review Questions

5.1 How do structures in C and C++ differ?

Answer:

C structure member functions are not permitted but in C++ member functions are permitted.

5.2 What is class? How does it accomplish data hiding?

Answer:

A class is a way to bind the data and its associated functions together.
In class, we can declare data as private so that the functions outside the class can not access the data and thus accomplish data hiding.

5.3 How does a C structure differ from a C++ class?

Answer:

Initially (in C) a structure was used to bundle different data types together to perform a particular functionality C++ extended the structure to contain functions. The difference is that all declarations inside a structure are default public.

5.4 What are objects? How are they created?

Answer:

Object is a member of class.
Simple example:
class fruit
{
… …
};
We can create an object as follows:
fruit mango;
here mango is an object.

5.5 How is a member function of a class defined?

Answer:

Member function of a class can be defined in two places:

  1. Inside the class definition: same as other normal function.
  2. Outside the class definition: general form:
    return-type class-name: function-name(argument list)
    {
    function body
    }

5.6 Can we use the same function name for a member function of a class and an outside function in the same program file? If yes, how are they distinguished? If no, give reasons.

Answer:

Yes, we can distinguish them during calls to main() function. The following example illustrates this:

#include<iostream>
using namespace std;
void func()
{cout << "Outside of Class \n";
}class sunny
{
public:void func(){cout << "Inside of Class \n";}
};int main()
{func();	// outside func() is calling.sunny ruby;ruby.func();	// inside func() is calling.return 0;
}

5.7 Describe the mechanism of accessing data members and member functions in the following case:

a. Inside the main program.

b. Inside a member function of the same class.

c. Inside a member function of another class.

Answer:

a. Using object and dot membership operator.
b. Just like accessing a local variable of a function.
c. Using object and dot dembership operator.

The following exampleexplains how to access data members and member functions inside a member function of another class.

#include<iostream>
using namespace std;
class a
{
public:int x;void display(){cout << "This is class a \n";x = 111;}
};class b
{
public:void display(){a s;cout << "Now member function 'diaplay()' of class a is calling from class b \n";s.display();cout << " x = " << s.x <<"\n";}
};int main()
{b billal;	// billal is a object of class b.billal.display();return 0;
}

5.8 When do we declare a member of a class static?

Answer:

We can define class members as static using static keywords. When we declare a member of a class as static it means no matter how many objects of the class are created, there is only one copy of the static member.
A static member is shared by all objects of the class. All static data is initialized to zero when the first object is created if no other initialization is present. We can’t put it in the class definition but it can be initialized outside the class, using the scope resolution operator :: to identify which class it belongs to.

5.9 What is a friend function? What are the merits and demerits of using friend functions?

Answer:

A function that acts as a bridge among different classes, then it is called friend function.
Merits:
We can access the other class members in our class if we use friend keyword;
We can access the members without inheriting the class.
Demerits:
The maximum size of the memory will occupied by objects according to the size of friend members.

5.10 State whether the following statements are TRUE or FALSE.

a. Data item in a class must always be private.

b. A function designed as private is accessible only to member functions of that class.

c. A function desigened as public can be accessed like any other ordinary functions.

d. Member functions defined inside a class specifier become inline functions by default.

e. Classes can bring together all aspects of an entity in one place.

f. Class members are public by default.

g. Friend functions have access to only public members of a class.

h. An entire class can be made a friend of another class.

i. Functios cannot return class object.

j. Data members can be initialized inside class specifier.

Answer:

a. FALSE
b. TRUE
c. FALSE, A function desigened as public can be accessed like any other ordinary functions from the member function of the same class.
d. TRUE
e. TRUE
f. FALSE
g. FALSE
h. TRUE
i. FALSE
j. FALSE

Debugging Exercises

5.1 Identify the error in the following program.

#include<iostream>
using namespace std;
class Room
{int width;int length;void setValue(int w, int l){width = w;length = l;cout << "Width is : " << width << ", Length is : " << length << endl;}
};int main()
{Room objRoom;objRoom.setValue(12, 1.4);return 0;
}

Answer:

Because “Room” is defined as “class” then the function “void setValue(int w, int l)” must be public.
If defined Room as “struct”, then there is no error.

5.2 Identify the error in the following program.

#include<iostream>
using namespace std;
class Item
{private:static int count;public:Item(){count++;}int getCount(){return count;}int * getCountAddress(){return count;}
};int Item::count = 0;int main()
{Item objItem1;Item objItem2;cout << objItem1.getCount() << ", ";cout << objItem2.getCount() << ", ";cout << objItem1.getCountAddress() << ", ";cout << objItem2.getCountAddress() << ", ";return 0;
}

Answer: invalid conversion from ‘int’ to ‘int*’ - > Correction

int * getCountAddress()
{return &count;
}

All other code remain unchanged.

5.3 Identify the error in the following program.

#include<iostream>
using namespace std;
class staticfunction
{static int count;public:static void setCount(){count++;}void displayCount(){cout << count;}
};int staticfunction::count = 10;int main()
{staticfunction obj1;obj1.setCount(5);staticfunction::setCount();obj1.displayCount();return 0;
}

Answer:

setCount() is not accept parameter, so here obj1.setCount(5); replace with obj1.setCount();

5.4 Identify the error in the following program.

#include<iostream>
using namespace std;
class Length
{int feet;float inches;public:Length(){feet = 5;inches = 6.0;}Length(int f, float in){feet = f;inches = in;}Length addLength(Length l){l.inches; this->inches;l.feet += this->feet;if(l.inches > 12){l.inches -= 12;l.feet++;}return l;}int getFeet(){return feet;}float getInches(){return inches;}
};int main()
{Length objLength1;Length objLength1(5, 6.5);objLength1 = objLength1.addLength(objLength2);cout << objLength1.getFeet() << ", ";cout << objLength1.getInches() << " ";return 0;
}

Answer:

In the main() function ‘objLength2’ was not declared in this scope.
Correction:
Length objLength1(5, 6.5); -> Length objLength2(5, 6.5);

Programming Exercises

5.1 Define a class to represent a bank account. Include the following members:

Data members:

Name of the depositor;
Account number;
Type of account;
The balance amount in the account.

Member functions:

To assign initial values.
To deposit an amount.
To withdraw an amount after checking the balance.
To display the name and balance.

Write a main program to test the program.

Answer:

#include <iostream>
#include <iomanip>
using namespace std;class bank
{private:string name;int acc_Nr;string acc_Type;double balance;public:int assign();void deposit(float b);void withdraw(float c);void display();};int bank::assign()
{float initial;cout << "You have to pay 100Euro to open your account \n"<< "You have to store at least 200 Euro to keep account active. \n"<< "Would you want to open a account? \n"<< "If Yes press 1 \n"<< "If No press 0 \n";int test;cin >> test;if(test == 1){initial = 200;balance = initial;cout << "Enter your name, account number & account type to create account : ";cin >> name >> acc_Nr >> acc_Type;}else;return test;     
}void bank::deposit(float b)
{balance += b;   
}void bank::withdraw(float c)
{balance -= c;   // withdrawif(balance < 200){cout << "Sorry, your balance is not sufficient to withdraw " << c << "Euro.\n"<< "You have to store at least 200 Euro to keep your account active.\n";balance += c;}
}void bank::display()
{cout << setw(12) << "Name" << setw(20) << "Account Type" << setw(12) << "Balance" << endl;cout << setw(12) << name << setw(20) << acc_Type << setw(12) << balance << endl;
}int main()
{bank account;int t;t = account.assign();   // initializationif(t == 1){cout << "Would you want to deposite ?" << endl<< "If NO press 0(zero)" << endl<< "If Yes enter deposite ammount : "<< endl;float dp;cin >> dp;account.deposit(dp);cout << "Would you want to withdraw ?"<< endl<< "If NO press 0(zero)" << endl<< "If Yes enter withdraw ammount : "<< endl;float wd;cin >> wd;account.withdraw(wd);cout << " See details :" << endl << endl;account.display();}else if(t == 0)cout << "Thank you! \n";return 0;
}

5.2 Write a class to represent a vector (a series of float values). Include member functions to perform the following tasks:

a. To create the vector

b. To modify the value of a given element

c. To multiply by a scalar value.

d. To display the vector in the form(10, 20, 30, …)

Answer:

#include <iostream>
#include <iomanip>
using namespace std;class vector
{private:float *fp;int size;public:void creat_vec(int a);void set_element(int i, float value);void modify_vec();void multiply(float b);void display_vec();};void vector::creat_vec(int a)
{size = a;fp = new float[size];
}void vector::set_element(int i, float value)
{fp[i] = value;   
}void vector::multiply(float b)
{for(int i=0; i<size;i++){fp[i] = b * fp[i];}
}void vector::display_vec()
{cout << "fp[" << size << "] = (";for(int j=0;j<size;j++){if(j == size-1)cout << fp[j];elsecout << fp[j] << " , ";}cout << ")" << endl;
}void vector::modify_vec()
{int i;cout << " to edit a given element enter position of the element : ";cin>>i;i--;cout << " Now enter new value of " << i+1 << "th element : ";float v;cin>>v;fp[i] = v;cout << "Now new contents : " << endl;display_vec();cout << " to delete an element enter position of the  element : ";cin>>i;i--;for(int k=i;k<size;k++){fp[k] = fp[k+1];}size--;cout<< "New contents : "<<endl;display_vec();
}int main()
{vector sunny;int s;cout << "Enter size of vector : ";cin>>s;sunny.creat_vec(s);cout << "enter " << s << " elements one by one : " << endl;for(int n=0;n<s;n++){float v;cin>>v;sunny.set_element(n,v);}cout << "Npw contents : " << endl;sunny.display_vec();cout << "to multiply this vector by a scalar quantity enter this scalar : ";float m;cin>>m;sunny.multiply(m);cout << "New contents : " << endl;sunny.display_vec();sunny.modify_vec();return 0;
}

5.3 Modify the class and the program of Exercise 5.1 for handling 10 customers.

Answer:

#include <iostream>
#include <iomanip>
using namespace std;
#define size 10
char* serial[size] = {"1st", "2nd", "3rd", "4th", "5th", "6th", "7th", "8th", "9th", "10th"};class bank
{private:string name;int acc_Nr;string acc_Type;double balance;public:int assign();void deposit(float b);void withdraw(float c);void displayon();void displayoff();};int bank::assign()
{float initial;cout << "You have to pay 100Euro to open your account \n"<< "You have to store at least 200 Euro to keep account active. \n"<< "Would you want to open a account? \n"<< "If Yes press 1 \n"<< "If No press 0 \n";int test;cin >> test;if(test == 1){initial = 200;balance = initial;cout << "Enter your name, account number & account type to create account : ";cin >> name >> acc_Nr >> acc_Type;}else;return test;     
}void bank::deposit(float b)
{balance += b;   
}void bank::withdraw(float c)
{balance -= c;   // withdrawif(balance < 200){cout << "Sorry, your balance is not sufficient to withdraw " << c << "Euro.\n"<< "You have to store at least 200 Euro to keep your account active.\n";balance += c;}
}void bank::displayon()
{cout << setw(12) << name << setw(20) << acc_Type << setw(12) << balance << endl;
}void bank::displayoff()
{cout << " Account has not created !" << endl;
}int main()
{bank account[size];int t[10];for(int i=0;i<size;i++){cout << "Enter information for " << serial[i] << "customer : " << endl;t[i] = account[i].assign();if(t[i] == 1){cout << "Would you want to deposite ?" << endl<< "If NO press 0(zero)" << endl<< "If Yes enter deposite ammount : "<< endl;float dp;cin >> dp;account[i].deposit(dp);cout << "Would you want to withdraw ?"<< endl<< "If NO press 0(zero)" << endl<< "If Yes enter withdraw ammount : "<< endl;float wd;cin >> wd;account[i].withdraw(wd);cout << endl << endl;}else if(t[i] == 0)cout << "Thank you! \n";}cout << " See details :" << endl << endl;cout << setw(12) << "Name" << setw(20) << "Account Type" << setw(12) << "Balance" << endl;for(int j=0;j<size;j++){if(t[j] == 1)account[j].displayon();else if (t[j] == 0)account[j].displayoff();}return 0;
}

5.4 Modify the class and the program of Exercise 5.2 such that the program would be able to add two vectors and display the resultant vector.(Note that we can pass objects as function arguments)

Answer:

#include <iostream>
#include <iomanip>
using namespace std;class vector
{private:float *fp;int size;public:void creat_vec(int a);void set_element(int i, float value);friend void add_vec(vector, vector, int n);};void vector::creat_vec(int a)
{size = a;fp = new float[size];
}void vector::set_element(int i, float value)
{fp[i] = value;   
}void add_vec(vector v1, vector v2, int sz)
{float *sum;cout << "sum[" << sz << "] = (";sum = new float[sz];for(int i=0;i<sz;i++){sum[i] = v1.fp[i] + v2.fp[i];if(i == sz-1)cout << sum[i];elsecout << sum[i] << " , ";}cout << ")" <<endl;
}int main()
{vector x1, x2;int s;cout << "Enter vector's size : ";cin>>s;cout << "Enter " << s << " elements of FIRST vector : ";x1.creat_vec(s);x2.creat_vec(s);for(int j=0;j<s;j++){float v;cin>>v;x1.set_element(j,v);}cout << "Enter " << s << " elements of SECOND vector (Two vector MUST have the SAME size): ";for(int i=0;i<s;i++){float r;cin>>r;x2.set_element(i,r);}add_vec(x1, x2, s);return 0;
}

5.5 Creat two classes DM and DB which store the value of distances. DM stores distances in meters and centimeters and DB in feet and inches. Write a program that can read values for the class objects and add one object of DM with another object of DB.

Use a friend function to carry out the addition operation. The object that stores the resultsmay be a DM object or DB object, depending on the units in which the results are required.

The display should be in the format of feet and inches or meters and centimeters depending on the object on display.

Answer:

#include <iostream>
#include <iomanip>
using namespace std;
# define factor 0.3048
class DB;class DM
{float d;public:void store(float x) {d = x;}friend void sum(DM, DB);void show();
};void DM::show()
{cout << "\n Distance = " << d << " meter or " << d * 100 << " centimeter \n";
}class DB
{float l;public:void store(float y) {l = y;}friend void sum(DM, DB);void show();
};void DB::show()
{cout << "\n Distance = " << l << " feet or " << l * 12 << " inches \n";
}void sum(DM m, DB b)
{float sum;sum = m.d + b.l * factor;float f;f = sum / factor;DM m1;DB b1;m1.store(sum);b1.store(f);cout << " Press 1 to diaplay result in meter \n"<< " Press 2 to display result in feet \n"<< " What is your option ? : ";int test;cin >> test;if(test == 1)m1.show();else if(test == 0)b1.show();
}int main()
{DM dm;DB db;dm.store(10.5);db.store(12.3);sum(dm, db);return 0;
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/874636.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

自动驾驶系列—智能巡航辅助功能中的车道变换功能介绍

自动驾驶系列—智能巡航辅助功能中的车道中央保持功能介绍 自动驾驶系列—智能巡航辅助功能中的车道变换功能介绍 自动驾驶系列—智能巡航辅助功能中的横向避让功能介绍 自动驾驶系列—智能巡航辅助功能中的路口通行功能介绍 文章目录 1. 背景介绍2. 功能定义3. 功能原理4. 传感…

MySQL聚合函数(DQL)

先看一下我的表内容和数据&#xff0c;再做接下来的例子和讲解 1.聚合函数的基本语法 SELECT 聚合函数&#xff08;表中的某个字段&#xff09;FROM 表名; 2. 常见的聚合函数 举例 1.统计该企业的数量 select count(idcard) from emp; 2.统计该企业员工的平均年龄 select…

【论文精读】Fully Sparse 3D Occupancy Prediction

1 背景信息 团队&#xff1a;南京大学&#xff0c;上海人工智能实验室 时间&#xff1a;2023年12月 代码&#xff1a;https://github.com/MCG-NJU/SparseOcc 2 OCC预测存在的问题 2.1 dense 3D features 目前都是提取的密集3D特征&#xff0c;但是据统计&#xff0c;**90%*…

SpringBoot缓存注解使用

背景 除了 RedisTemplate 外&#xff0c; 自Spring3.1开始&#xff0c;Spring自带了对缓存的支持。我们可以直接使用Spring缓存技术将某些数据放入本机的缓存中&#xff1b;Spring缓存技术也可以搭配其他缓存中间件(如Redis等)进行使用&#xff0c;将某些数据写入到缓存中间件…

QSqlRelationalTableModel 增删改查

QSqlRelationalTableModel 可以作为关系数据表的模型类&#xff0c;适用于三范式设计的表&#xff0c;主表中自动加载外键表中的名称。本文实现QSqlRelationalTableModel 为模型类&#xff0c;实现增删改查。 目录 0.表准备 1. 构建表格数据 声明变量 表格、数据模型、选择…

全球价值链贸易核算matlab程序(TIVA与WWZ分解方法大全)以及区域表链接方法

数据来源&#xff1a;基础数据来源于世界银行、国家统计局时间范围&#xff1a;2007年数据范围&#xff1a;国家与行业层面样例数据&#xff1a; 包含内容&#xff1a; 全部数据下载链接&#xff1a;https://download.csdn.net/download/samLi0620/89567902

Redis的操作以及SpringCache框架

目录 一.什么是Redis&#xff1f; 二.Redis的相关知识&#xff1a; 三.如何操作Redis&#xff1f; 1&#xff0c;常用命令&#xff1a; 2.Spring Data Redis &#xff08;1&#xff09; pom.xml 配置&#xff1a; &#xff08;2&#xff09;配置Redis数据源&#xff1a; …

麒麟V10安装nginx、mysql报错缺少包:error while loading shared libraries libssl.so.10

背景 启动nginx报错&#xff1a;error while loading shared libraries libssl.so.10 解决 查看nginx启动文件所依赖的动态链接库&#xff08;即共享库或动态库&#xff09; ldd nginx-1.22.1/sbin/nginx离线安装compat-openssl10包 将依赖包麒麟v10安装openssl10依赖包上…

QT6.6+Opencv 4.6.0完成摄像头显示以及捕获照片的功能

效果图提前展示,想试试再往下看: 在网上找了很久QT的摄像头打开方式,成功了,但是捕获照片一直不成功,我不知道是不是qt6版本的原因:这个多媒体窗口我安装没有效果 QT += multimediawidgets之前使用过python的opencv,于是想到可以使用opencv来显示摄像头以及捕获照片。…

C++完整的学生管理系统

实现功能 添加、删除、修改学生为学生添加、删除、修改成绩将数据保存在students.txt和grades.txt里 效果图&#xff08;部分功能&#xff09; 添加学生 添加成绩 源代码 这里就不分多个文件了 编译时在连接器命令行加入以下命令 -stdc11 #include <ios…

极客天成NVFile全闪存储加速千卡AIGC大模型训练平台

01 中国AI算力核心产业现状 随着人工智能技术的快速发展和广泛应用&#xff0c;AI算力已成为推动数字经济和科技创新的关键基础设施。2024年&#xff0c;中国AI算力核心产业规模持续扩大&#xff0c;在全球AI发展格局中占据重要地位&#xff0c;中国AI算力核心产业规模达到约…

LangChain的数据增强

吾名爱妃&#xff0c;性好静亦好动。好编程&#xff0c;常沉浸于代码之世界&#xff0c;思维纵横&#xff0c;力求逻辑之严密&#xff0c;算法之精妙。亦爱篮球&#xff0c;驰骋球场&#xff0c;尽享挥洒汗水之乐。且喜跑步&#xff0c;尤钟马拉松&#xff0c;长途奔袭&#xf…

Spring事务(1)

目录 一、事务回顾 1、什么是事务&#xff1f; 2、为什么需要事务&#xff1f; 3、事务的操作 二、Spring 中事务的实现 1、代码准备&#xff1a; &#xff08;1&#xff09;创建项目 spring-trans&#xff0c;引入 Spring Web&#xff0c;MyBatis&#xff0c;MySQL等依…

【C++】C++前言

目录 一.什么是C 1.1.面向过程&#xff1a; 1.2.面向对象&#xff1a; 二.C发展历史 三.C版本更迭 3.1.语法更新 3.2.关于C2X最新特性的讨论&#xff1a; 3.3.关于C23的一个小故事&#xff1a; 四.C参考文档&#xff1a; 五.C的重要性&#xff1a; 5.1.编程语言排行榜…

JESD204B学习与仿真

平台&#xff1a;vivado2018.3 芯片&#xff1a;xcku115-flva1517-2-i 场景&#xff1a;在高速ADC和DAC芯片中&#xff0c;有使用源同步的时钟和数据同步传输的方式&#xff0c;但是需要在逻辑内部对其进行校准。如果使用jesd204b接口传输数据&#xff0c;设计人员不需要了解…

《流程引擎原理与实践》开源电子书

流程引擎原理与实践 电子书地址&#xff1a;https://workflow-engine-book.shuwoom.com 第一部分&#xff1a;流程引擎基础 1 引言 1.1 流程引擎介绍 1.2 流程引擎技术的发展历程 1.3 相关产品国内外发展现状 1.4 本书的内容和结构安排 2 概念 2.1 基础概念 2.2 进阶…

MODBUS tcp学习总结

MODBUS TCP协议实例数据帧详细分析_modbus 帧结构-CSDN博客

Vuex看这一篇就够了

&#x1f49d;&#x1f49d;&#x1f49d;欢迎来到我的博客&#xff0c;很高兴能够在这里和您见面&#xff01;希望您在这里可以感受到一份轻松愉快的氛围&#xff0c;不仅可以获得有趣的内容和知识&#xff0c;也可以畅所欲言、分享您的想法和见解。 非常期待和您一起在这个小…

Win11 改造

记录一些安装 win11 系统之后&#xff0c;对使用不习惯的地方&#xff0c;进行的个人改造 右键菜单 Hiyoung006/Win11Useable: 将Win11右键菜单及资源管理器恢复为Win10样式的脚本 切换到旧版右键菜单&#xff1a; reg add "HKCU\Software\Classes\CLSID\{86ca1aa0-34…

什么是128陷阱?

Java包装类详解 Java包装类提供了一种将基本数据类型转换为对象的机制&#xff0c;这对于在需要对象而非基本数据类型的场景下尤为有用。本文将介绍拆装箱、包装类的编译器行为、常见方法以及自动装箱中的128陷阱。 拆装箱 拆装箱概念 拆箱&#xff08;Unboxing&#xff09…