g++编译宏使用

本文介绍了C++中类的权限控制,包括private和public成员的使用,并展示了如何利用编译宏来控制代码块的编译。示例中包含了一个二叉树节点的定义,用于计算树的深度,以及一个查找非7的倍数的函数。同时,还给出了一个名为Base的类,演示了成员函数的权限使用。

C++类中的权限

在C++中
private成员函数只能在类内使用,是不对外开放的
public成员函数,既能在类内使用,又能在类外使用
private成员只能在类内使用

编译宏使用

#include<iostream>
#include <vector>
#include <algorithm>
#include <istream>
#include <string>
#include <sstream>
#include <set>

#ifdef BNode
struct BNode
{
   
   
    /* data */
    BNode* left_son;
    BNode* right_son;
    int data;

    BNode(int a):data(a),left_son(nullptr),right_son(nullptr)
    {
   
   
        
    }
};

int find_depth(BNode* bn)
{
   
   
    
    if(bn==nullptr/* && bn->right_son==nullptr*/)
    {
   
   
        return 0;
    }

    // depth++;
    int left_depth = find_depth(bn->left_son);

    int right_depth = find_depth(bn->right_son);
        /* code */
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Tech沉思录

点赞加投币,感谢您的资瓷~

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值