class Contact {private: string name; string tel; string postcode;public: Contact(string name, string tel, string postcode) { this->name = name; this->tel = tel; this->postcode = postcode; } string getName() { return name; } string getTel() { return tel; } string getPostcode() { return postcode; } void setName(string name) { this->name = name; } void setTel(string tel) { this->tel = tel; } void setPostcode(string postcode) { this->postcode = postcode; } void display() { cout << "Name: " << name << endl; cout << "Tel: " << tel << endl; cout << "Postcode: " << postcode << endl; }};
时间: 2023-05-20 12:03:46 浏览: 72
这是一个 Contact 类的定义,它包含了三个私有成员变量 name、tel 和 postcode,以及一些公有成员函数,包括构造函数、获取成员变量值的函数和设置成员变量值的函数,还有一个 display 函数用于打印成员变量的值。
相关问题
{"province":"\u91cd\u5e86","city":"\u91cd\u5e86","postcode":"400000","tel_prefix":"023","operator":"\u8054\u901a"}
### 回答1:
这是一个 JSON 格式的字符串,其中 `\u` 开头的部分是 Unicode 编码表示的字符。例如,`\u91cd\u5e86` 表示的是重庆这个汉字。
如果您想将这些 Unicode 编码的字符转换为实际的字符,可以使用 `json_decode()` 函数,将 JSON 格式的字符串转换为 PHP 数组或对象。例如:
```php
$jsonStr = '{"province":"\u91cd\u5e86","city":"\u91cd\u5e86","postcode":"400000","tel_prefix":"023","operator":"\u8054\u901a"}';
$data = json_decode($jsonStr, true);
```
在上面的代码中,我们首先定义了一个 JSON 格式的字符串 `$jsonStr`,然后使用 `json_decode()` 函数将其转换为 PHP 数组 `$data`。第二个参数 `true` 表示将结果转换为关联数组。
转换完成后,您可以像访问 PHP 数组一样访问 `$data` 中的数据。例如,要获取省份信息,可以使用 `$data['province']`。
### 回答2:
这段文字描述了一个地理位置和联系方式。根据描述,这个地点位于中国的重庆市,邮政编码为400000,电话区号为023,电信运营商是中国联通。重庆市是中国的直辖市之一,位于中国西南地区,是一个拥有丰富历史和文化的城市。重庆市是中国内陆最大的城市,也是中国的四个直辖市之一。重庆市的经济发展较快,是中国的重要工业中心和交通枢纽。中国联通是中国的国有电信运营商之一,为手机和固定电话用户提供通信服务。总之,根据提供的信息,这是一个位于重庆市,邮编为400000,电话区号为023,并且电信运营商是中国联通的地理位置和联系方式。
### 回答3:
这段文字中包含了有关重庆市的信息。重庆市是中国的一个省级行政区,也是一个直辖市,省会名称也是重庆。邮政编码是400000,电话区号是023,运营商是中国联通。
设计并实现一个C++联系人类:contact,该类有name,tel和postcode三个私有属性,为该类设计若干方法,包括构造函数、存取三个私有属性的函数、显示联系人信息的函数等。 (2)设计并实现一个通讯录类:addressBook,该类包含一个存放所有联系人的容器。 (3)为addressBook设计若干方法,包括显示所有联系人、增加联系人、删除联系人、插入联系人、查找联系人等函数,以及将所有联系人保存到文件和从文件中读取联系人的函数。 (4)设计主函数,显示操作选择菜单,完成通讯录的显示、增加、查找、删除和保存等功能。其中,类的成员函数的定义与实现应分开在两个文件,并且禁止使用vector。应使用string类
以下是C知道的回答:
1. 以下是实现C联系人类contact的代码:
```c++
#include <string>
class contact {
private:
std::string name;
std::string tel;
std::string postcode;
public:
contact(std::string name, std::string tel, std::string postcode) {
this->name = name;
this->tel = tel;
this->postcode = postcode;
}
std::string getName() {
return name;
}
std::string getTel() {
return tel;
}
std::string getPostcode() {
return postcode;
}
void setName(std::string name) {
this->name = name;
}
void setTel(std::string tel) {
this->tel = tel;
}
void setPostcode(std::string postcode) {
this->postcode = postcode;
}
void display() {
std::cout << "Name: " << name << std::endl;
std::cout << "Tel: " << tel << std::endl;
std::cout << "Postcode: " << postcode << std::endl;
}
};
```
2. 以下是实现通讯录类addressBook的代码:
```c++
#include <iostream>
#include <fstream>
#include <string>
#include <list>
#include "contact.h"
class addressBook {
private:
std::list<contact> contacts;
public:
void displayAll() {
for (auto it = contacts.begin(); it != contacts.end(); it++) {
it->display();
std::cout << std::endl;
}
}
void add(contact c) {
contacts.push_back(c);
}
void remove(std::string name) {
for (auto it = contacts.begin(); it != contacts.end(); it++) {
if (it->getName() == name) {
contacts.erase(it);
break;
}
}
}
void insert(int index, contact c) {
auto it = contacts.begin();
std::advance(it, index);
contacts.insert(it, c);
}
contact find(std::string name) {
for (auto it = contacts.begin(); it != contacts.end(); it++) {
if (it->getName() == name) {
return *it;
}
}
return contact("", "", "");
}
void saveToFile(std::string filename) {
std::ofstream file(filename);
for (auto it = contacts.begin(); it != contacts.end(); it++) {
file << it->getName() << "," << it->getTel() << "," << it->getPostcode() << std::endl;
}
file.close();
}
void loadFromFile(std::string filename) {
std::ifstream file(filename);
std::string line;
while (std::getline(file, line)) {
std::string name, tel, postcode;
std::stringstream ss(line);
std::getline(ss, name, ',');
std::getline(ss, tel, ',');
std::getline(ss, postcode, ',');
contacts.push_back(contact(name, tel, postcode));
}
file.close();
}
};
```
3. 以下是主函数的代码:
```c++
#include <iostream>
#include <string>
#include "addressBook.h"
int main() {
addressBook book;
while (true) {
std::cout << "1. Display all contacts" << std::endl;
std::cout << "2. Add a contact" << std::endl;
std::cout << "3. Remove a contact" << std::endl;
std::cout << "4. Insert a contact" << std::endl;
std::cout << "5. Find a contact" << std::endl;
std::cout << "6. Save to file" << std::endl;
std::cout << "7. Load from file" << std::endl;
std::cout << "8. Exit" << std::endl;
int choice;
std::cin >> choice;
switch (choice) {
case 1:
book.displayAll();
break;
case 2: {
std::string name, tel, postcode;
std::cout << "Enter name: ";
std::cin >> name;
std::cout << "Enter tel: ";
std::cin >> tel;
std::cout << "Enter postcode: ";
std::cin >> postcode;
book.add(contact(name, tel, postcode));
break;
}
case 3: {
std::string name;
std::cout << "Enter name: ";
std::cin >> name;
book.remove(name);
break;
}
case 4: {
int index;
std::string name, tel, postcode;
std::cout << "Enter index: ";
std::cin >> index;
std::cout << "Enter name: ";
std::cin >> name;
std::cout << "Enter tel: ";
std::cin >> tel;
std::cout << "Enter postcode: ";
std::cin >> postcode;
book.insert(index, contact(name, tel, postcode));
break;
}
case 5: {
std::string name;
std::cout << "Enter name: ";
std::cin >> name;
contact c = book.find(name);
if (c.getName() == "") {
std::cout << "Contact not found" << std::endl;
} else {
c.display();
}
break;
}
case 6: {
std::string filename;
std::cout << "Enter filename: ";
std::cin >> filename;
book.saveToFile(filename);
break;
}
case 7: {
std::string filename;
std::cout << "Enter filename: ";
std::cin >> filename;
book.loadFromFile(filename);
break;
}
case 8:
return 0;
default:
std::cout << "Invalid choice" << std::endl;
break;
}
}
}
```
希望这些代码能够帮助你实现通讯录功能。
阅读全文