一个class的student项目

这篇博客展示了如何使用C++定义一个名为`student`的类,包含姓名、分数和性别的属性,并提供了设置和获取这些属性的方法。此外,还实现了小于和大于操作符重载,用于比较学生的分数。示例中创建了两个`student`对象并进行了初始化。
摘要由CSDN通过智能技术生成

简介

话不多说,直接给代码,完整版看这里https://blog.csdn.net/algorithmyyds/article/details/122153488​​​​​​​

代码

#include <iostream>
#include <string>
using namespace std;
class student
{
private:
    string name;
    unsigned score;
    bool male;
public:
    student():name(""),score(0),male(true){}
    student(string n,unsigned s,bool m):name(n),score(s),male(m){}
    void SetName(string n)
    {
        name=n;
    }
    void SetScore(unsigned s)
    {
        score=s;
    }
    void SetMale(bool m)
    {
        male=m;
    }
    string GetName()
    {
        return name;
    }
    unsigned GetScore()
    {
        return score;
    }
    bool GetMale()
    {
        return male;
    }
    string GetNMale()
    {
        if(male)
            return "male";
        return "female";
    }
    bool operator<(student s)
    {
        return s.score>score;
    }
    bool operator>(student s)
    {
        return s.score<score;
    }
};
int main()
{
    student s("",100,true);
    student st("",99,false);
    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值