is_constructible_v<std::string&&, std::string&&>是什么意思?
作者:myoldgrandpa 提问时间:8/28/2023
我能理解什么是. 但是什么意思?is_constructible_v<std::string, std::string&&>is_constructible_v<std::string&&, std:...
17 问答列表
作者:myoldgrandpa 提问时间:8/28/2023
我能理解什么是. 但是什么意思?is_constructible_v<std::string, std::string&&>is_constructible_v<std::string&&, std:...
作者:Pavel Zdenek 提问时间:8/29/2023
我正在为具有嵌入式 Linux 的非常有限的设备开发一种智能 UDP/TCP 代理。该设备具有规定的 SDK,因此我仅限于 GCC C++17,不能使用 Clang 或 C++20。我使用 Boost...
作者:Saad 提问时间:6/2/2016
循环使用 / 有任何问题吗?我正在尝试遍历文件数组和每个文件的内容。asyncawaitforEachawait import fs from 'fs-promise' async functio...
作者:mishar 提问时间:9/5/2023
这个问题在这里已经有答案了: C++17引入的评估顺序保证是什么? (3 个答案) 3个月前关闭。 我知道这是那些“未定义的行为”问题之一,但是当前关于该主题的cpreference页面(截至C++...
作者:Patrick Wright 提问时间:9/7/2023
我正在尝试编写一个模板函数,该函数通常使用任何给定的“maker”函数创建类型。例如,该函数应该能够创建一个 using 、 或 。intstd::make_uniquestd::make_share...
作者:Manarbek 提问时间:8/14/2023
class Base { public: class FirstBase { friend class Base; int x = 10; }; class SecondBase : p...
作者:Pujitha 提问时间:9/23/2023
我正在尝试为指标集成 newrelic-agent。我正在使用下面的 newrelic 版本,在本地运行时,它工作正常。 <groupId>com.newrelic.agent.java</gro...
作者:iammilind 提问时间:8/2/2023
struct X { void foo () {} void const_foo () const {} }; struct Y { X x; int i; X* operator->...
作者:LarrxX 提问时间:9/22/2023
几天来我一直在为此苦苦挣扎。我正在将一些代码移植到 MacOS/AppleClang,我们有非常繁重的模板化代码,这些代码在 MSVC 上正确构建,但在 clang 上失败(可以理解,因为在阅读之后,...
作者:Fanteria 提问时间:9/20/2023
我正在尝试编写一个实现 .此运算符已为按值传递或按常量引用传递的类型实现,如以下示例所示:operator<<std::pair<const char*, std::optional<T>> MyS...