[c++06]private和friend

Posted AIplusX

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[c++06]private和friend相关的知识,希望对你有一定的参考价值。

概要

今天我们来写一下private和friend这两个修饰符的作用。private是在编译时刻检查的,也就是说如果能在编译时刻解决编译器对private的限制,那么private其实也是可以访问的(但是非常不建议这么做)。friend声明某个类,函数等是自己的friend,那么被声明的类,函数等就可以访问自己的私有变量啦。

[c++06]private和friend

以上是关于[c++06]private和friend的主要内容,如果未能解决你的问题,请参考以下文章

Java中public,private,protected,和默认的区别

Java修饰符public private protected和default(friendly)之间的区别

C++ 友元

Go实战(篇三)使用接口封装SQL操作

nested friend

C++面向对象:友元关键字friend的使用