文件头应该是类还是结构体?
我正在解析带有标题的文件格式。 (注:我不写任何文件,我只读取和解析)
因为它不会被改变,所以它的头可以按值传递。 所以我猜结构将是最好的选择,但我不确定,因为我几乎从不使用它们。
我有什么理由应该(不)将其设为类或结构吗?
编辑:目前很难提供例子。 您可以将其与任何基本文件头进行比较。 它包括签名(“幻数”)、版本和“子类型”。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
“不会改变”部分是不可变的指示符,而不是值类型的指示符。
您可能想要一堂课,但如果没有示例就无法确定。
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.
如果您打算使用序列化,那么我建议上课。
If you are going to use Serialization then I suggest class.