C++编程思想 第五章隐藏实现 习题

本文通过C++代码示例介绍了类的定义及成员的访问限制,包括public、protected和private成员,并展示了如何使用嵌套类实现不同层级的访问控制。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

5-1

 C++ Code 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#include <iostream>
#include <string>
#include "myhead.h"
#include <cstdio>
using namespace std ;


class sharp
{
public:
    string a;
protected:
    string b;
private:
    string c;
public:
    sharp()//这里必须是public
    {
        
//this->inital();
        this->a="public:";
        
this->b ="protected:";
        
this->c ="private:";
    }
    
};
int main(void)
{
    sharp check;
    cout<<check.a;
    cout<<check.b;
    check<<check.c;
    system(
"pause");
}

5-3

 

5-4

 

5-6

 C++ Code 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#include <iostream>
using namespace std;

class hen
{
public:
    
class next
    {
    
public:
        
class egg
        {
        
public:
            
void dispaly(void)
            {
                cout<<
"egg"<<endl;
            }
        };
        
void dispaly(void)
        {
            cout<<
"next"<<endl;
        }
    };

    
void dispaly(void)
    {
        cout<<
"hen"<<endl;
    }
};


void main(void)
{
    
//类的嵌套  
    hen dage;
    
//二级嵌套
    hen::next jidan;
    
//三级嵌套
    hen::next::egg fuck;
    dage.dispaly();
    jidan.dispaly();
    fuck.dispaly();
    system(
"pause");
}

 

 

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值