support bazel complie this project and format code.

This commit is contained in:
zhangxing
2023-03-30 00:15:11 +08:00
committed by light-city
parent 1f86192576
commit 7529ae3a55
636 changed files with 10025 additions and 9387 deletions

View File

@@ -0,0 +1,8 @@
# please run `bazel run //practical_exercises/10_day_practice/day7/subscript_operator:subscript_operator`
load("@rules_cc//cc:defs.bzl", "cc_binary")
cc_binary(
name = "subscript_operator",
srcs = ["subscript_operator.cpp"],
)

View File

@@ -0,0 +1,51 @@
/* 重载[]运算符 */
// Eg8-9.cpp
#include <cstring>
#include <iostream>
using namespace std;
struct Person { //职工基本信息的结构
double salary;
char *name;
};
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; 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 < n; i++)
cout << employ[i].name << " " << employ[i].salary << endl;
}
};
int main() {
SalaryManaege s(3);
s["张三"] = 2188.88;
s["里斯"] = 1230.07;
s["王无"] = 3200.97;
cout << "张三\t" << s["张三"] << endl;
cout << "里斯\t" << s["里斯"] << endl;
cout << "王无\t" << s["王无"] << endl;
cout << "-------下为display的输出--------\n\n";
s.display();
}