【自用25.1】C++-智能交友系统项目

注:项目类文章会陆续更新,请大家关注系列文章

创建Girl类

头文件

#pragma once
#include 
using namespace std;

class Boy;

class Girl
{
public:
	Girl();
	Girl(int age, string name, int style);
	~Girl();

	int getAge() const;
	string getName() const;
	int getStyle() const;
	bool satisfied(const Boy& boy) const;
private:
	int age;
	string name;
	int style;//风格

};

你可能感兴趣的:(学习笔记,C++,Pro,c++,算法,开发语言)