V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  a554340466  ›  全部回复第 2 页 / 共 26 页
回复总数  519
1  2  3  4  5  6  7  8  9  10 ... 26  
79 天前
回复了 Huangzi7 创建的主题 问与答 什么电动剃须刀刮得干净
博朗 8 系 强推,用了好几年了,除了换过一次刀头
比较危险
108 天前
回复了 Betsy 创建的主题 C++ 求教个神奇的 C++ 打印问题
@Betsy https://dokumen.pub/c17-the-complete-guide-396730017x-9783967300178.html
109 天前
回复了 Betsy 创建的主题 C++ 求教个神奇的 C++ 打印问题
it is always safe to assign any optional return value to a new object:
auto a = getString().value(); // OK: copy of contained object or exception
However, using the returned value directly (other than passing it as an argument) is a source of trouble:
```cpp
auto b = *getString(); // ERROR: undefined behavior if std::nullopt
const auto& r1 = getString().value(); // ERROR: reference to deleted contained object
auto&& r2 = getString().value(); // ERROR: reference to deleted contained object
```
The problem with the references is that by rule, they extend the lifetime of the return value of value() but
not the lifetime of the optional object returned by getString(). Thus, r1 and r2 refer to values that no
longer exist and using them results in undefined behavior.
109 天前
回复了 Betsy 创建的主题 C++ 求教个神奇的 C++ 打印问题
读一下 C++17 The complete guide 的 optional 那一章
139 天前
回复了 SteveRogers 创建的主题 问与答 105 的房,套内 90,是搞啥空调合适?
中央空调吧,电费也没多少
140 天前
回复了 s3171673170 创建的主题 问与答 初中学历,生活走向。与父母吸血问题
你父母挺累的,为你操碎了心。
开发一个找工作的软件。。
169 天前
回复了 ericuni 创建的主题 深圳 存量房贷怎么办
卖掉旧的 买套新的 利率就下来了
185 天前
回复了 yougo 创建的主题 Apple iPad Pro 做薄是一件非常正确的事
oled 屏幕就是最大的劝退点
230 天前
回复了 xyj998 创建的主题 装修 快速路旁边开窗 65 分贝应该怎么选窗户?
有个疑惑 装了这种窗户,开了之后还隔音吗?如果不能,这个窗户岂不是废了?
...目测得考公 or 考研
2023-06-29 10:57:27 +08:00
回复了 gitsuck 创建的主题 问与答 深圳私企 offer 值得为了技术放弃佛山国企银行吗?
不值得。 可能没有技术
2023-06-13 10:32:30 +08:00
回复了 l947 创建的主题 教育 家里的弟弟刚高考完,关于专业的选择求助
土木,计算机 这两个都可以
2023-06-02 10:05:31 +08:00
回复了 johntang824 创建的主题 程序员 6 月了, Java 应届生是不是真没戏了
考公吧
2023-05-25 11:18:26 +08:00
回复了 code4world 创建的主题 问与答 618 组装台 ITX 小主机怎么样?
想配一个 r9 7950x + 4060ti 的 itx 机
2023-01-30 09:48:04 +08:00
回复了 ccagml 创建的主题 职场话题 兄弟们,游戏行业还能入吗?
别进,加班加的惨烈
1  2  3  4  5  6  7  8  9  10 ... 26  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   1995 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 35ms · UTC 00:22 · PVG 08:22 · LAX 16:22 · JFK 19:22
Developed with CodeLauncher
♥ Do have faith in what you're doing.