- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
从代码项目中获取此 ScopeExit 类,但它不会构建在 GCC 4.5.3 上。感谢任何帮助。
class ScopeExit : private boost::noncopyable
{
typedef std::function<void()> func_t;
public:
ScopeExit(func_t&& f) : func(f) {}
~ScopeExit() { func(); }
private:
// no default ctor
ScopeExit();
// Prohibit construction from lvalues.
ScopeExit(func_t&);
// Prohibit new/delete.
void* operator new(size_t);
void* operator new[](size_t);
void operator delete(void *);
void operator delete[](void *);
const func_t func;
};
ScopeExit exit = [&]() { };
gcc 4.5.3 错误:
In member function ‘void test()’:
error: conversion from ‘test()::<lambda()>’ to non-scalar type ‘ScopeExit’ requested
编辑:
ScopeExit exit([&]() { }); // this works
最佳答案
这是复制/移动初始化。你的copy c-tor被删除了,move c-tor也被删除了。
n3337 12.8/9
If the definition of a class X does not explicitly declare a move constructor, one will be implicitly declaredas defaulted if and only if
— X does not have a user-declared copy constructor,
— X does not have a user-declared copy assignment operator,
— X does not have a user-declared move assignment operator,
— X does not have a user-declared destructor, and
— the move constructor would not be implicitly defined as deleted.
不知道为什么第一种情况不起作用,但这种情况很好
template<typename T>
ScopeExit(T&& f) : func(std::move(f)) {}
ScopeExit(ScopeExit&& rhs) : func(std::move(rhs.func)) { }]
编辑。
当我们使用类类型变量的复制初始化
时,仅使用标准和省略隐式转换。从 lambda 到函数指针或从函数指针到 std::function
的转换是用户定义的转换
,未使用。
n3337 8.5/16
The semantics of initializers are as follows. The destination type is the type of the object or reference beinginitialized and the source type is the type of the initializer expression. If the initializer is not a single (possiblyparenthesized) expression, the source type is not defined.
If the destination type is a (possibly cv-qualified) class type:
Otherwise (i.e., for the remaining copy-initialization cases), user-defined conversion sequencesthat can convert from the source type to the destination type or (when a conversion functionis used) to a derived class thereof are enumerated as described in 13.3.1.4, and the best one ischosen through overload resolution (13.3). If the conversion cannot be done or is ambiguous, theinitialization is ill-formed.
n3337 13.3.1.4/1
Under the conditions specified in 8.5, as part of a copy-initialization of an object of class type, a user-defined conversion can be invoked to convert an initializer expression to the type of the object being initialized.Overload resolution is used to select the user-defined conversion to be invoked. Assuming that “cv1 T” isthe type of the object being initialized, with T a class type, the candidate functions are selected as follows:
— The converting constructors (12.3.1) of T are candidate functions.
- In both cases, the argument list has one argument, which is the initializer expression. [ Note: This argumentwill be compared against the first parameter of the constructors and against the implicit object parameterof the conversion functions. — end note ]
n3337 13.3.2
1. From the set of candidate functions constructed for a given context (13.3.1), a set of viable functions ischosen, from which the best function will be selected by comparing argument conversion sequences for thebest fit (13.3.3). The selection of viable functions considers relationships between arguments and functionparameters other than the ranking of conversion sequences.
Second, for F to be a viable function, there shall exist for each argument an implicit conversion se-quence (13.3.3.1) that converts that argument to the corresponding parameter of F.
n3337 13.3.3.1/4
However, when considering the argument of a constructor or user-defined conversion function that is acandidate by 13.3.1.3 when invoked for the copying/moving of the temporary in the second step of a classcopy-initialization, by 13.3.1.7 when passing the initializer list as a single argument or when the initializerlist has exactly one element and a conversion to some class X or reference to (possibly cv-qualified) X isconsidered for the first parameter of a constructor of X, or by 13.3.1.4, 13.3.1.5, or 13.3.1.6 in all cases, onlystandard conversion sequences and ellipsis conversion sequences are considered.
关于c++ - 通过 ctor 右值参数的 Lambda 赋值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12471863/
你能解释一下这个作业是如何完成的吗, var fe, f = document.forms[0], h; 哪个等于哪个。 最佳答案 以上等同于 var fe; var f = document.for
据我测试,这两种方法都有效,但我不知道哪一种最好,也不知道它们之间的区别,这就是我想知道的。 以下是两种方法: window.location = 'http://www.google.com'; w
我正在处理用字符串填充的 numpy 数组。我的目标是分配给第一个数组 a 的切片,值包含在较小尺寸的第二个数组 b 中。 我想到的实现如下: import numpy as np a = np.em
在我使用过的其他语言(如 Erlang 和 Python)中,如果我正在拆分字符串并且不关心其中一个字段,我可以使用下划线占位符。我在 Perl 中试过这个: (_,$id) = split('
我认为这似乎很简单,但我对调用、应用、绑定(bind)感到困惑。等等 我有一个事件监听器 red.addEventListener("click", function() { j = 0;
这个问题在这里已经有了答案: What is the python "with" statement designed for? (11 个答案) 关闭 7 年前。 使用有什么区别: iFile =
这个问题在这里已经有了答案: What is the python "with" statement designed for? (11 个答案) 关闭 7 年前。 使用有什么区别: iFile =
几周前我们开始写一篇关于 Haskell 的论文,刚刚接到我们的第一个任务。我知道 SO 不喜欢家庭作业问题,所以我不会问怎么做。相反,如果有人能将我推向正确的方向,我将不胜感激。鉴于它可能不是一个特
我正在尝试为我的函数的变量根分配一个值,但似乎不起作用。我不明白这个问题。 hw7.c:155:7:警告:赋值使指针来自整数而不进行强制转换[默认启用] root = 负载(&fp, 大小); 此代码
我昨天花了大约 5 个小时来完成这个工作,并使用这个网站的帮助让代码可以工作,但我认为我这样做的方式是一种作弊方式,我使用了 scanf 命令。无论如何,我想以正确的方式解决这个问题。多谢你们!哦,代
我需要一些帮助来解决问题。 我有这个文本文件: 我将文本内容输入到字符串二维数组中,并将其转换为整数二维数组。当我转换为 int 数组时,nan 被替换为零。现在,我继续查找二维数组中每行的最大值和最
假设我有一个只能移动的类型。我们停止现有的默认提供的构造函数,但 Rvalue 引用引入了一种新的“ flavor ”,我们可以将其用于签名的移动版本: class CantCopyMe { priv
假设我有两个简单的对象,我想创建第三个对象来连接它们的属性。这非常有效: (()=>{ const a1 = {a: 2, b: 3} const b1 = {a: 100, c: 5}
我想知道我是否可以稍后在这样的代码中为 VAR 赋值 var myView: UIView func createView() { myView = UIView() { let _view =
我遇到了一些 Javascript/HTML/CSS 代码的问题。我对创建网站还很陌生,所以请多多包涵。 我最终想做的是从 javascript 中提取一个动态值并使用它对一些 div(在容器中)进行
#include class Box{ public: int x; Box(){ x=0; std::cout No move construction thanks to RV
我发现在javascript中&=运算符是按位赋值: var test=true; test&=true; //here test is an int variable javascript中是否存在
请帮助完成赋值重载函数的执行。 这是指令: 赋值运算符 (=),它将源字符串复制到目标字符串中。请注意,目标的大小需要调整为与源相同。 加法 (+) 和赋值 (=) 运算符都需要能够进行级联运算。这意
我有一个名为 SortedArrayList 的自定义结构它根据比较器对其元素进行排序,我想防止使用 operator[] 进行分配. 示例: 数组列表.h template class Array
我是 python 的新手,我看到了这种为列表赋值的形式 color= ['red' if v == 0 else 'green' for v in y] 但是如果我尝试用 3 个数字来做,例如 co
我是一名优秀的程序员,十分优秀!