From e4cf08593b66bfdb5bd857f1085703f58bc5c703 Mon Sep 17 00:00:00 2001 From: Francis <455954986@qq.com> Date: Sun, 14 Jun 2020 19:28:32 +0800 Subject: [PATCH] =?UTF-8?q?Update=20=E4=B8=AD=E6=8B=AC=E5=8F=B7=E9=87=8D?= =?UTF-8?q?=E8=BD=BD.cpp?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../key_exercises/中括号重载.cpp | 91 ++++++++++--------- 1 file changed, 49 insertions(+), 42 deletions(-) diff --git a/practical_exercises/key_exercises/中括号重载.cpp b/practical_exercises/key_exercises/中括号重载.cpp index f89aaec..a9a2137 100644 --- a/practical_exercises/key_exercises/中括号重载.cpp +++ b/practical_exercises/key_exercises/中括号重载.cpp @@ -1,51 +1,58 @@ -//Eg8-9.cpp #include #include using namespace std; -struct Person{ //ְϢĽṹ - double salary; - char *name; +struct Person +{ //职工基本信息的结构 + double salary; + char *name; }; -class SalaryManaege{ - Person *employ; //ְϢ - int max; //±Ͻ - int n; //еʵְ +class SalaryManaege +{ + Person *employ; //存放职工信息的数组 + int max; //数组下标上界 + int n; //数组中的实际职工人数 public: - SalaryManaege(int Max=0){ - max=Max; - n=0; - employ=new Person[max]; - } - //ǿֱڷֱֵʹ - double &operator[](char *Name) { //[] - Person *p; - for(p=employ;pname,Name)==0) - return p->salary; - // - p=employ + n++; - p->name=new char[strlen(Name)+1]; - strcpy(p->name,Name); - p->salary=0; - return p->salary; - } + SalaryManaege(int Max = 0) + { + max = Max; + n = 0; + employ = new Person[max]; + } + //返回引用特性是可以直接在放在左值,直接使用 + double &operator[](char *Name) + { //重载[],返回引用 + Person *p; + for (p = employ; p < employ + n; p++) + //如果存在处理 + if (strcmp(p->name, Name) == 0) + return p->salary; + //不存在情况处理 + p = employ + n++; + p->name = new char[strlen(Name) + 1]; + strcpy(p->name, Name); + p->salary = 0; + return p->salary; + } - void display(){ - for(int i=0;i