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