C++???????
???????????? ???????[ 2016/4/26 11:33:53 ] ????????.NET ???????????
?????? C++ ????????????
??????????????С????????????????????????е?????????
???????????????????
????+---------+
????|class | --> ??
????+---------+
????|public | --> ??????
????|protected| --> ???????
????|private | --> ??????
????+---------+
????|friend | --> ??????
????+---------+
???????????????????????????????????????????????????????????Щ?????????????????????????????????????????鴫?У???????????????????????????????????????????????????????????????????????Щ??????????????????????????????м?λ?????????????
???????????????????
????+---------+
????|Inherits | --> ??????
????+---------+
????|public | --> ???
????|protected| --> ????
????|private | --> ???
????+---------+
????C++ ???????м????????????????????????????????????????????????????????????public??????????????????public?? protected??????????????protected????????????????????????????????protected?? protected?????????????????——??????private???????????????????????????????????private??private????
class Father {
public:
int x;
protected:
int y;
private:
int z;
};
class FirstSon : public Father {
// x is public
// y is protected
// z is not accessible from Father
};
class SecondSon : protected Father {
// x is protected
// y is protected
// z is not accessible from Father
};
class Illegitimate : private A {
// x is private
// y is private
// z is not accessible from Father
};
?????????????????????????????????????
class Base {
protected:
int prot_mem;
};
class Sneaky : public Base {
friend void clobber(Sneaky &s) { s.j = s.prot_mem = 0; }
friend void clobber(Base &b) { b.prot_mem = 0; } // error
int j;
};
????prot_mem ?? Base ?? protected ???????????? ?? public ???????? Base ?????? Sneaky ??????????????ó????????????
??????????? clobber ??? Sneaky ?????????????????? Sneaky ??????????????? j?????????????? prot_mem??
????????? clobber ??? Sneaky ???????????????????丸?????μ? prot_mem???????????????? ????????????????????????????????? Sneaky?????????丸???????????Υ???????????
??????
???·???
??????????????????
2023/3/23 14:23:39???д?ò??????????
2023/3/22 16:17:39????????????????????Щ??
2022/6/14 16:14:27??????????????????????????
2021/10/18 15:37:44???????????????
2021/9/17 15:19:29???·???????·
2021/9/14 15:42:25?????????????
2021/5/28 17:25:47??????APP??????????
2021/5/8 17:01:11