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?????????丸???????????Υ???????????
??????

???·???
App??С????H5?????????????????Щ??
2024/9/11 15:34:34?????????????????????????
2024/9/10 11:13:49P-One ???????????????????????????????????????
2024/9/10 10:14:12???????????????????????????
2024/9/9 18:04:26??????????????????
2023/3/23 14:23:39???д?ò??????????
2023/3/22 16:17:39????????????????????Щ??
2022/6/14 16:14:27??????????????????????????
2021/10/18 15:37:44