Update README.md
This commit is contained in:
parent
f8372b35d8
commit
4be086d0aa
@ -1,19 +1,19 @@
|
||||
# struct与class区别
|
||||
# The difference struct and class
|
||||
|
||||
## 关于作者:
|
||||
|
||||
个人公众号:
|
||||
|
||||

|
||||
|
||||
关于C与C++中struct内容:见[struct那些事](../struct)
|
||||
More detail about struct [Story about struct](../struct)
|
||||
|
||||
总的来说,struct 更适合看成是一个数据结构的实现体,class 更适合看成是一个对象的实现体。
|
||||
Generally speaking, struct is more suitable to be regarded as an implementation body of data structure, and class is more suitable to be regarded as the implementation body of an object.
|
||||
|
||||
区别:
|
||||
Dif:
|
||||
|
||||
最本质的一个区别就是默认的访问控制
|
||||
One of the essential differences is the default access control
|
||||
|
||||
默认的继承访问权限。struct 是 public 的,class 是 private 的。
|
||||
|
||||
struct 作为数据结构的实现体,它默认的数据访问控制是 public 的,而 class 作为对象的实现体,它默认的成员变量访问控制是 private 的。
|
||||
|
||||
Default inherited access.Struct is public, while class is private.
|
||||
|
||||
Structure as the implementation body of data structure.Its default data access control is public, while class is the implementation body of the object, and its default member variable access control is private.
|
||||
|
Loading…
Reference in New Issue
Block a user