- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
funObj
)。 funObj
类的定义中,定义了一个称为id
的积分成员变量以保存所构造的每个funObj
的ID,并定义了一个静态积分成员变量n
来计数创建的funObj
对象。 funObj
时,n
都会增加1,并将其值分配给新创建的id
的funObj
字段。 stdout
上,以表示它们的调用以及它们所引用的funObj
的ID。 func
函数,该函数将funObj
类型的值对象作为输入。 #include <vector>
#include <iostream>
#include <algorithm>
#include <functional>
template<typename T>
class funObj {
std::size_t id;
static std::size_t n;
public:
funObj() : id(++n)
{
std::cout << " Constructed via the default constructor, object foo with ID(" << id << ")" << std::endl;
}
funObj(funObj const &other) : id(++n)
{
std::cout << " Constructed via the copy constructor, object foo with ID(" << id << ")" << std::endl;
}
~funObj()
{
std::cout << " Destroyed object foo with ID(" << id << ")" << std::endl;
}
void operator()(T &elem)
{
}
T operator()()
{
return 1;
}
};
template<typename T>
void func(funObj<T> obj) { obj(); }
template<typename T>
std::size_t funObj<T>::n = 0;
int main()
{
std::vector<int> v{ 1, 2, 3, 4, 5, };
std::cout << "> Calling `func`..." << std::endl;
func(funObj<int>());
std::cout << "> Calling `for_each`..." << std::endl;
std::for_each(std::begin(v), std::end(v), funObj<int>());
std::cout << "> Calling `generate`..." << std::endl;
std::generate(std::begin(v), std::end(v), funObj<int>());
// std::ref
std::cout << "> Using `std::ref`..." << std::endl;
auto fobj1 = funObj<int>();
std::cout << "> Calling `for_each` with `ref`..." << std::endl;
std::for_each(std::begin(v), std::end(v), std::ref(fobj1));
std::cout << "> Calling `generate` with `ref`..." << std::endl;
std::for_each(std::begin(v), std::end(v), std::ref(fobj1));
return 0;
}
Calling
func
...Constructed via the default constructor, object foo with ID(1)
Destroyed object foo with ID(1)
调用for_each
...
Constructed via the default constructor, object foo with ID(2)
Constructed via the copy constructor, object foo with ID(3)
Destroyed object foo with ID(2)
Destroyed object foo with ID(3)
调用generate
...
Constructed via the default constructor, object foo with ID(4)
Constructed via the copy constructor, object foo with ID(5)
Destroyed object foo with ID(5)
Destroyed object foo with ID(4)
使用std::ref
...
Constructed via the default constructor, object foo with ID(6)
用for_each
调用ref
...
用generate
调用ref
...
Destroyed object foo with ID(6)
讨论:
从上面的输出中可以看到,使用func
类型的临时对象调用函数funObj
会导致构造单个funObj
对象(即使func
通过值传递其参数)。但是,当将funObj
类型的临时对象传递给STL算法std::for_each
和std::generate
时,情况似乎并非如此。在前一种情况下,将引发复制构造函数并构造一个额外的funObj
。在许多应用中,创建这种“不必要的”拷贝会大大降低算法的性能。基于这一事实,提出了以下问题。
问题:
我知道大多数STL算法都按值传递其参数。但是,与 func
(也按值传递其输入参数)相比,STL算法会生成一个额外的拷贝。此“不必要”拷贝的原因是什么?是否有消除这种“不必要”拷贝的方法? 在每种情况下分别调用 std::for_each(std::begin(v), std::end(v), funObj<int>())
和func(funObj<int>())
时,临时对象funObj<int>
驻留在哪个范围内?我尝试使用 std::ref
来强制通过引用传递,并且如您所见,消除了“不必要的”拷贝。但是,当我尝试将临时对象传递给std::ref
(即std::ref(funObj<int>())
)时,出现编译器错误。为什么这种陈述是非法的?使用VC++ 2013生成了输出。如您所见,调用 std::for_each
时存在异常,以相反的顺序调用对象的析构函数。为什么会这样?当我在运行GCC v4.8的Coliru上运行代码时,析构函数异常已修复,但是 std::generate
不会生成额外的拷贝。为什么会这样?
详细信息/评论:
上面的输出是从VC++ 2013生成的。
更新:
我还向 funObj
类添加了一个move构造函数(请参见下面的代码)。
funObj(funObj&& other) : id(other.id)
{
other.id = 0;
std::cout << " Constructed via the move constructor, object foo with ID(" << id << ")" << std::endl;
}
我还已在VC++ 2013中启用了完全优化并在 Release模式下进行了编译。
输出(VC++ 2013):
Calling
func
...Constructed via the default constructor, object foo with ID(1)
Destroyed object foo with ID(1)
调用for_each
...
Constructed via the default constructor, object foo with ID(2)
Constructed via the move constructor, object foo with ID(2)
Destroyed object foo with ID(2)
Destroyed object foo with ID(0)
调用generate
...
Constructed via the default constructor, object foo with ID(3)
Constructed via the copy constructor, object foo with ID(4)
Destroyed object foo with ID(4)
Destroyed object foo with ID(3)
使用std::ref
...
Constructed via the default constructor, object foo with ID(5)
用for_each
调用ref
...
用generate
调用ref
...
Destroyed object foo with ID(5)
输出GCC 4.8
Calling
func
...Constructed via the default constructor, object foo with ID(1)
Destroyed object foo with ID(1)
调用for_each
...
Constructed via the default constructor, object foo with ID(2)
Constructed via the move constructor, object foo with ID(2)
Destroyed object foo with ID(2)
Destroyed object foo with ID(0)
调用generate
...
Constructed via the default constructor, object foo with ID(3)
Destroyed object foo with ID(3)
Constructed via the default constructor, object foo with ID(4)
用for_each
调用ref
...
用generate
调用ref
...
Destroyed object foo with ID(4)
似乎VC++ 2013std::generate
如果启用了优化标志且编译处于 Release模式,并且定义了move构造函数,则将生成一个额外的拷贝。
最佳答案
1 - I know that most STL algorithms pass their argument by value. However, compared to func, that also passes its input argument by value, the STL algorithms generate an extra copy. What's the reason for this "unnecessary" copy?
func
返回void,因此少了一个拷贝。
generate
不返回任何东西(请参阅dyp)的评论2 - Is there a way to eliminate such "unnecessary" copies?
std::ref
的拷贝(不过您的对象将不会被复制)
auto fobj1 = funObj<int>();
std::for_each<std::vector<int>::iterator, std::vector<int>::iterator,
funObj<int>&> // this is where the magic happens !!
(std::begin(v), std::end(v), fobj1);
3 - When calling std::for_each(std::begin(v), std::end(v), funObj()) and func(funObj()) in which scope does temporary object funObj lives, for each case respectively?
std_for_each
的主体扩展如下:
template<class InputIterator, class Function>
Function for_each(InputIterator first, InputIterator last, Function fn)
{ // 1
while (first!=last) {
fn (*first);
++first;
}
return fn; // or, since C++11: return move(fn);
// 2
}
template<typename T>
void func(funObj<T> obj)
{ // 1.
obj();
// 2.
}
1
和
2
标记生命周期。请注意,虽然
如果返回值优化应用了(已命名或未命名),则编译器可能会生成将返回值(函数对象位于for_each中)放置在调用方的堆栈框架中的代码,因此使用生命周期更长。
4 - I've tried to use std::ref in order to force pass-by-reference and as you can see the "unnecessary" copy was eliminated. However, when I try to pass a temporary object to std::ref (i.e., std::ref(funObj())) I get a compiler error. Why such kind of statements are illegal?
std::ref
不适用于r值引用(后接STL代码):
template<class _Ty>
void ref(const _Ty&&) = delete;
5 - The output was generated using VC++2013. As you can see there's an anomaly when calling std::for_each the destructors of the objects are being called in reversed order. Why is that so?
6 - When I run the code on Coliru that runs GCC v4.8 the anomaly with destructors is fixed however std::generate doesn't generate an extra copy. Why is that so?
for_each
中的仿函数和generate
中的生成器均按值传递(,没有签名接受r值引用),因此显然,这是复制的问题elision 保存多余的拷贝。 template<typename _InputIterator, typename _Function>
_Function
for_each(_InputIterator __first, _InputIterator __last, _Function __f)
{
// concept requirements
__glibcxx_function_requires(_InputIteratorConcept<_InputIterator>)
__glibcxx_requires_valid_range(__first, __last);
for (; __first != __last; ++__first)
__f(*__first);
return _GLIBCXX_MOVE(__f);
}
关于c++ - 调用C++/STL算法时消除不必要的拷贝,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23613574/
滑动窗口限流 滑动窗口限流是一种常用的限流算法,通过维护一个固定大小的窗口,在单位时间内允许通过的请求次数不超过设定的阈值。具体来说,滑动窗口限流算法通常包括以下几个步骤: 初始化:设置窗口
表达式求值:一个只有+,-,*,/的表达式,没有括号 一种神奇的做法:使用数组存储数字和运算符,先把优先级别高的乘法和除法计算出来,再计算加法和减法 int GetVal(string s){
【算法】前缀和 题目 先来看一道题目:(前缀和模板题) 已知一个数组A[],现在想要求出其中一些数字的和。 输入格式: 先是整数N,M,表示一共有N个数字,有M组询问 接下来有N个数,表示A[1]..
1.前序遍历 根-左-右的顺序遍历,可以使用递归 void preOrder(Node *u){ if(u==NULL)return; printf("%d ",u->val);
先看题目 物品不能分隔,必须全部取走或者留下,因此称为01背包 (只有不取和取两种状态) 看第一个样例 我们需要把4个物品装入一个容量为10的背包 我们可以简化问题,从小到大入手分析 weightva
我最近在一次采访中遇到了这个问题: 给出以下矩阵: [[ R R R R R R], [ R B B B R R], [ B R R R B B], [ R B R R R R]] 找出是否有任
我正在尝试通过 C++ 算法从我的 outlook 帐户发送一封电子邮件,该帐户已经打开并记录,但真的不知道从哪里开始(对于 outlook-c++ 集成),谷歌也没有帮我这么多。任何提示将不胜感激。
我发现自己像这样编写了一个手工制作的 while 循环: std::list foo; // In my case, map, but list is simpler auto currentPoin
我有用于检测正方形的 opencv 代码。现在我想在检测正方形后,代码运行另一个命令。 代码如下: #include "cv.h" #include "cxcore.h" #include "high
我正在尝试模拟一个 matlab 函数“imfill”来填充二进制图像(1 和 0 的二维矩阵)。 我想在矩阵中指定一个起点,并像 imfill 的 4 连接版本那样进行洪水填充。 这是否已经存在于
我正在阅读 Robert Sedgewick 的《C++ 算法》。 Basic recurrences section it was mentioned as 这种循环出现在循环输入以消除一个项目的递
我正在思考如何在我的日历中生成代表任务的数据结构(仅供我个人使用)。我有来自 DBMS 的按日期排序的任务记录,如下所示: 买牛奶(18.1.2013) 任务日期 (2013-01-15) 任务标签(
输入一个未排序的整数数组A[1..n]只有 O(d) :(d int) 计算每个元素在单次迭代中出现在列表中的次数。 map 是balanced Binary Search Tree基于确保 O(nl
我遇到了一个问题,但我仍然不知道如何解决。我想出了如何用蛮力的方式来做到这一点,但是当有成千上万的元素时它就不起作用了。 Problem: Say you are given the followin
我有一个列表列表。 L1= [[...][...][.......].......]如果我在展平列表后获取所有元素并从中提取唯一值,那么我会得到一个列表 L2。我有另一个列表 L3,它是 L2 的某个
我们得到二维矩阵数组(假设长度为 i 和宽度为 j)和整数 k我们必须找到包含这个或更大总和的最小矩形的大小F.e k=7 4 1 1 1 1 1 4 4 Anwser是2,因为4+4=8 >= 7,
我实行 3 类倒制,每周换类。顺序为早类 (m)、晚类 (n) 和下午类 (a)。我固定的订单,即它永远不会改变,即使那个星期不工作也是如此。 我创建了一个函数来获取 ISO 周数。当我给它一个日期时
假设我们有一个输入,它是一个元素列表: {a, b, c, d, e, f} 还有不同的集合,可能包含这些元素的任意组合,也可能包含不在输入列表中的其他元素: A:{e,f} B:{d,f,a} C:
我有一个子集算法,可以找到给定集合的所有子集。原始集合的问题在于它是一个不断增长的集合,如果向其中添加元素,我需要再次重新计算它的子集。 有没有一种方法可以优化子集算法,该算法可以从最后一个计算点重新
我有一个包含 100 万个符号及其预期频率的表格。 我想通过为每个符号分配一个唯一(且前缀唯一)的可变长度位串来压缩这些符号的序列,然后将它们连接在一起以表示序列。 我想分配这些位串,以使编码序列的预
我是一名优秀的程序员,十分优秀!