c – Class vs Struct仅供数据使用?

前端之家收集整理的这篇文章主要介绍了c – Class vs Struct仅供数据使用?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在这样的情况下,使用类超过结构体有什么优势吗?
(注意:它只会保存变量,永远不会有函数)
class Foo { 
private:   
   struct Pos { int x,y,z };
public:    
   Pos Position; 
};

与:

struct Foo {
   struct Pos { int x,z } Pos;
};

类似的问题:

> When should you use a class vs a struct in C++?
> What are the differences between struct and class in C++?
> When should I use a struct instead of a class?

解决方法

在c中,没有真正的优势,在c中,struct和类之间的唯一区别是它的成员的默认可见性(structs默认为public,class默认为private).

就个人而言,我倾向于倾向于使用POD类型的结构体,并将其他类使用类.

编辑:litb评论中提出了一个好点,所以我要在这里引用他:

one important other difference is that structs derive from other classes/struct public by default,while classes derive privately by default.

原文链接:https://www.f2er.com/c/114222.html

猜你在找的C&C++相关文章