文件头应该是类还是结构体?

发布于 2024-11-25 20:27:14 字数 197 浏览 0 评论 0原文

我正在解析带有标题的文件格式。 (注:我不写任何文件,我只读取和解析)

因为它不会被改变,所以它的头可以按值传递。 所以我猜结构将是最好的选择,但我不确定,因为我几乎从不使用它们。

我有什么理由应该(不)将其设为类或结构吗?

编辑:目前很难提供例子。 您可以将其与任何基本文件头进行比较。 它包括签名(“幻数”)、版本和“子类型”。

I'm parsing a file format with a header.
(Note: I don't write any files, I only read and parse)

Because it won't be changed, its header can be passed by value.
So I would guess a struct would be the best choice but I'm not sure because I almost never use them.

Is there any reason why I should (not) make it a class or a struct?

Edit: It's hard to provide an example at the moment.
You can compare it to any basic file header.
It includes the signature ('magic number'), the version and the 'sub-type'.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

冷月断魂刀 2024-12-02 20:27:14

“不会改变”部分是不可变的指示符,而不是值类型的指示符。

您可能想要一堂课,但如果没有示例就无法确定。

The "won't be changed" part is an indicator for immutable, not for value-type.

You probably want a class, but it's impossible to be sure without an example.

后来的我们 2024-12-02 20:27:14

如果您打算使用序列化,那么我建议上课。

If you are going to use Serialization then I suggest class.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文