仅用于数据的类与结构?

Class vs Struct for data only?(仅用于数据的类与结构?)
本文介绍了仅用于数据的类与结构?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

在这种情况下,使用类比使用结构有什么优势吗?(注意:它只会保存变量,永远不会有函数)

Is there any advantage over using a class over a struct in cases such as these? (note: it will only hold variables, there will never be functions)

class Foo { 
private:   
   struct Pos { int x, y, z };
public:    
   Pos Position; 
};

对比:

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

<小时>

类似问题:


Similar questions:

  • 什么时候应该使用类与C++ 中的结构体?
  • struct 和 class 有什么区别C++?
  • 我什么时候应该使用结构而不是班级?

推荐答案

使用一个并没有真正的优势,在 C++ 中,结构和类之间的唯一区别是其成员的默认可见性(结构默认为public,类默认为private).

There is no real advantage of using one over the other, in c++, the only difference between a struct and a class is the default visibility of it's members (structs default to public, classes default to private).

就我个人而言,我倾向于将结构用于 POD 类型,而将类用于其他所有类型.

Personally, I tend to prefer structs for POD types and use classes for everything else.

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

litb made a good point in the comment so I'm going to quote him here:

另一个重要的区别是结构派生自其他默认情况下,类/结构公共,而类通过私有派生默认.

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

这篇关于仅用于数据的类与结构?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Bring window to front -gt; raise(),show(),activateWindow() don’t work(把窗户放在前面 -raise(),show(),activateWindow() 不起作用)
How to get a list video capture devices NAMES (web cameras) using Qt (crossplatform)? (C++)(如何使用 Qt(跨平台)获取列表视频捕获设备名称(网络摄像机)?(C++))
How to compile Qt as static(如何将 Qt 编译为静态)
C++ over Qt : Controlling transparency of Labels and Buttons(C++ over Qt:控制标签和按钮的透明度)
How to know when a new USB storage device is connected in Qt?(Qt如何知道新的USB存储设备何时连接?)
What is an event loop in Qt?(Qt 中的事件循环是什么?)