类的基本概念

本文详细介绍了C++中的类,包括数据成员和成员函数,访问限制如public、private、protected,以及构造函数、析构函数的使用。讨论了构造函数的默认行为、重载、初始化列表、委托构造函数和隐式类型转换。同时,提到了对象的复制构造函数、可变数据成员和聚合类的概念。重点强调了类在数据保护和内存管理中的作用。
摘要由CSDN通过智能技术生成

二、类

类是用户定义的数据类型:

例:

#include<iostream>
using namespace std;
class Date //class 是数据类型说明符,Date是所定义类型的名称 
{
   
private:
    int year;
    int month;
    int day;
public:
    inline void init_date(int y, int m, int d); //内联函数
    bool isLeapyear() {
   
        if ((year % 4 == 0 && year % 100 != 0) || year % 400)
            return true;
        else
            return false;
    }
    void print() {
   
        cout << year << "-" << month << "-" << day << endl;
    }
};
void Date::init_date(int y, int m, int d) {
   
    year = y;
    month = m;
    day = d;
}
void main() {
   
    Date today, yesterday, tomorrow;
    today.init_date(2020, 2, 28);
    yesterday.init_date(2020, 2, 27);
    if (today.isLeapyear())
        tomorrow.init_date(2020, 2, 29);
    else<
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值