gpt4 book ai didi

c++ - 使用 std::Optional 而不是自己的结构

转载 作者:行者123 更新时间:2023-12-02 03:07:11 26 4
gpt4 key购买 nike

我需要使用可空类型。

我找到了std::optional完全符合我的期望。

但是这个功能从 C++ 17 开始就可以使用,C++ 14 的实验分支。这意味着编译器(不同的计算机)必须更新。

它只是为数据和 bool 值分配了空间,指示变量是否存在。

为什么我应该使用这个功能而不是自己的结构?

使用 std::optional 有什么好处吗? ?

谢谢!

最佳答案

在了解您对问题的观点后,我想引用一句话来回答。

P.13: Use support libraries as appropriate.

Reason Using a well-designed, well-documented, and well-supported library saves time and effort; its quality and documentation are likely to be greater than what you could do if the majority of your time must be spent on an implementation. The cost (time, effort, money, etc.) of a library can be shared over many users. A widely used library is more likely to be kept up-to-date and ported to new systems than an individual application. Knowledge of a widely-used library can save time on other/future projects. So, if a suitable library exists for your application domain, use it.

来自 C++ Core Guidelines

关于c++ - 使用 std::Optional 而不是自己的结构,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60169845/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com