- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我在 C++11 的 move 语义方面遇到问题。我正在使用带有 -std=c++11 开关的 gcc 4.9.2 20150304(预发布),但我在 move 构造函数未被调用时遇到问题。
我有以下源文件:
#ifndef DENSEMATRIX_H_
#define DENSEMATRIX_H_
#include <cstddef>
#include <iostream>
#include <utility>
class DenseMatrix {
private:
size_t m_ = 0, n_ = 0;
double *values = nullptr;
public:
/* ctor */
DenseMatrix( size_t, size_t );
/* copy ctor */
DenseMatrix( const DenseMatrix& rhs );
/* move ctor */
DenseMatrix( DenseMatrix&& rhs ) noexcept;
/* copy assignment */
const DenseMatrix& operator=( const DenseMatrix& rhs );
/* move assignment */
const DenseMatrix& operator=( DenseMatrix&& rhs ) noexcept;
/* matrix multiplication */
DenseMatrix operator*( const DenseMatrix& rhs ) const;
/* dtor */
~DenseMatrix();
};
#endif
#include "densematrix.h"
/* ctor */
DenseMatrix::DenseMatrix( size_t m, size_t n ) :
m_( m ), n_( n ) {
std::cout << "ctor with two arguments called." << std::endl;
if ( m_*n_ > 0 )
values = new double[ m_*n_ ];
}
/* copy ctor */
DenseMatrix::DenseMatrix( const DenseMatrix& rhs ) :
m_( rhs.m_ ), n_( rhs.n_ ) {
std::cout << "copy ctor called." << std::endl;
if ( m_*n_ > 0 ) {
values = new double[ m_*n_ ];
std::copy( rhs.values, rhs.values + m_*n_, values);
}
}
/* move ctor */
DenseMatrix::DenseMatrix( DenseMatrix&& rhs ) noexcept :
m_( rhs.m_ ), n_( rhs.n_ ), values( rhs.values ) {
std::cout << "move ctor called." << std::endl;
rhs.values = nullptr;
}
/* copy assignment */
const DenseMatrix& DenseMatrix::operator=( const DenseMatrix& rhs ) {
std::cout << "copy assignment called." << std::endl;
if ( this != &rhs ) {
if ( m_*n_ != rhs.m_*rhs.n_ ) {
delete[] values;
values = new double[ rhs.m_*rhs.n_ ];
}
m_ = rhs.m_;
n_ = rhs.n_;
std::copy( rhs.values, rhs.values + m_*n_, values);
}
return *this;
}
/* move assignment */
const DenseMatrix& DenseMatrix::operator=( DenseMatrix&& rhs ) noexcept {
std::cout << "move assignment called." << std::endl;
m_ = rhs.m_;
n_ = rhs.n_;
delete[] values;
values = rhs.values;
rhs.values = nullptr;
return *this;
}
/* matrix multiplication */
DenseMatrix DenseMatrix::operator*( const DenseMatrix& rhs ) const {
return DenseMatrix( this->m_, rhs.n_ );
}
/* dtor */
DenseMatrix::~DenseMatrix() {
std::cout << "dtor called." << std::endl;
delete[] values;
}
#include <iostream>
#include <utility>
#include "densematrix.h"
int main( int argc, char* argv[] ) {
/* ctor */
DenseMatrix A( 5, 10 );
/* ctor */
DenseMatrix B( 10, argc );
/* copy ctor */
DenseMatrix C = A;
/* copy assignment */
C = B;
/* move ctor */
DenseMatrix D( A*B );
DenseMatrix E = DenseMatrix( 100, 200 );
/* move assignment */
D = C*D;
return 0;
}
如果我在没有使用 -fno-elide-constructors 开关的情况下编译我的程序,我将获得以下输出:
ctor with two arguments called.
ctor with two arguments called.
copy ctor called.
copy assignment called.
ctor with two arguments called.
ctor with two arguments called.
ctor with two arguments called.
move assignment called.
dtor called.
dtor called.
dtor called.
dtor called.
dtor called.
dtor called.
另一方面,如果我使用 -fno-elide-constructors 开关进行编译,我会得到以下输出:
ctor with two arguments called.
ctor with two arguments called.
copy ctor called.
copy assignment called.
ctor with two arguments called.
move ctor called.
dtor called.
move ctor called.
dtor called.
ctor with two arguments called.
move ctor called.
dtor called.
ctor with two arguments called.
move ctor called.
dtor called.
move assignment called.
dtor called.
dtor called.
dtor called.
dtor called.
dtor called.
dtor called.
在第二个输出中,我对 move ctor 感到困惑。首先,在创建 D 时调用了两个 move 构造函数,而在创建 E 时只调用了一个 move 构造函数。其次,在将乘法结果赋值给 D 时,在 move 赋值运算符之前调用了另一个 move 构造函数。
有人可以解释发生了什么和/或我是否正确设计了我的类(class)?遇到这种情况怎么办?我是否应该以正常方式(没有开关)编译程序并在我想确保 move 语义或什么的时候使用 std::move()?
谢谢!
根据@Praetorian 的评论进行编辑:
我的 densematrix.h
实现的最终版本如下:
#ifndef DENSEMATRIX_H_
#define DENSEMATRIX_H_
#include <cstddef>
#include <stdexcept>
#include <utility>
#include <vector>
class DenseMatrix {
private:
size_t m_ = 0, /* number of rows */
n_ = 0; /* number of columns */
/* values of the matrix in column major order */
std::vector< double > values_;
public:
/* ctor */
DenseMatrix( size_t m, size_t n,
std::vector< double > values = std::vector< double >() ) :
m_( m ),
n_( n ),
values_( values )
{
if ( m_*n_ == 0 )
throw std::domain_error( "One of the matrix dimensions is zero!" );
else if ( m_*n_ != values.size() && values_.size() != 0 )
throw std::domain_error( "Matrix dimensions do not match with the number of elements" );
}
/* copy ctor */
DenseMatrix( const DenseMatrix& rhs ) :
m_( rhs.m_ ),
n_( rhs.n_ ),
values_( rhs.values_ ) { }
/* move ctor */
DenseMatrix( DenseMatrix&& rhs ) noexcept :
m_( std::move( rhs.m_ ) ),
n_( std::move( rhs.n_ ) ),
values_( std::move( rhs.values_ ) ) { }
/* copy assignment */
const DenseMatrix& operator=( const DenseMatrix& rhs ) {
if ( this != &rhs ) {
m_ = rhs.m_;
n_ = rhs.n_;
/* trust std::vector<>'s optimized implementation, i.e.,
* no need to check the vectors' sizes to decrease the
* heap access */
values_ = rhs.values_;
}
return *this;
}
/* move assignment */
const DenseMatrix& operator=( DenseMatrix&& rhs ) noexcept {
m_ = std::move( rhs.m_ );
n_ = std::move( rhs.n_ );
values_ = std::move( rhs.values_ );
return *this;
}
/* matrix multiplication */
DenseMatrix operator*( const DenseMatrix& rhs ) const {
/* do dimension checking */
DenseMatrix temp( this->m_, rhs.n_ );
/* do the necessary calculations */
return temp;
}
/* dtor not needed in this case */
};
#endif
现在,希望我已经正确地实现了语义。你怎么认为?现在,在复制和/或 move 不同大小的 vector 时,我依赖于我使用的容器类。
再次感谢您的帮助和意见!
最佳答案
每次使用operator*
时的两个 move 操作是因为您要求编译器不要执行复制/move 省略。这迫使它在内部构建一个临时的 operator*
(2 个参数构造函数调用),然后将此临时对象 move 到返回值( move 构造函数调用),最后将返回值 move 到目标对象(在您的示例中 move 构造函数/move 赋值调用)。
我还打印了打印语句中涉及的对象的地址,从而使您的示例更加嘈杂。例如
std::cout << "move ctor called. " << this << std::endl;
让我们看看这里发生了什么:
/* move ctor */
DenseMatrix D( A*B );
std::cout << "&D " << &D << std::endl;
相关输出语句为
ctor with two arguments called. 0x7fff7c2cb1d0 <-- temporary created in the
return statement of operator*
move ctor called. 0x7fff7c2cb2b0 <-- temporary moved into the return value
dtor called. 0x7fff7c2cb1d0 <-- temporary from step 1 destroyed
move ctor called. 0x7fff7c2cb230 <-- return value moved into D
dtor called. 0x7fff7c2cb2b0 <-- return value destroyed
&D 0x7fff7c2cb230 <-- address of D
D = C*D;
的输出是相同的,除了第二步构造被 move 赋值代替。
您在类实现中没有做错任何事,只是不要使用 -fno-elide-constructors
编译代码(你为什么要这样做?)。
这对您的情况没有影响,但通常在 move 构造函数中,源对象的数据成员是 std::move
d 在内存初始化器中
DenseMatrix::DenseMatrix( DenseMatrix&& rhs ) noexcept :
m_( std::move(rhs.m_) ), n_( std::move(rhs.n_) ), values( std::move(rhs.values) ) {
//..
}
最后,您可能想要更改 values
来自 double*
至 std::vector<double>
并避免所有 new
和 delete
电话。这样做的唯一警告是 vector
每当你vector::resize
时,它都会初始化它添加的新元素, 但是 there are workarounds也是为了那个。
更新以解决您在上次编辑中添加的代码。
不仅不再需要析构函数定义,而且您也不需要任何复制/move 构造函数/赋值运算符。编译器会隐式地为您声明这些,它们的作用与您的手写版本完全相同。所以你在类中需要的只是构造函数定义和 operator*
的构造函数定义。 .这就是不手动管理内存的真正美妙之处。
我会对构造函数定义做一些更改
DenseMatrix( size_t m, size_t n,
std::vector< double > values = {} ) : // <-- use list initialization,
// no need to repeat type name
m_( m ),
n_( n ),
values_( std::move(values) ) // <-- move the vector instead of copying
{
// ...
}
关于c++ - move 语义 : how best to understand/use them,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29824486/
我在优化 JOIN 以使用复合索引时遇到问题。我的查询是: SELECT p1.id, p1.category_id, p1.tag_id, i.rating FROM products p1
我有一个简单的 SQL 查询,我正在尝试对其进行优化以删除“使用位置;使用临时;使用文件排序”。 这是表格: CREATE TABLE `special_offers` ( `so_id` int
我有一个具有以下结构的应用程序表 app_id VARCHAR(32) NOT NULL, dormant VARCHAR(6) NOT NULL, user_id INT(10) NOT NULL
此查询的正确索引是什么。 我尝试为此查询提供不同的索引组合,但它仍在使用临时文件、文件排序等。 总表数据 - 7,60,346 产品= '连衣裙' - 总行数 = 122 554 CREATE TAB
为什么额外的是“使用where;使用索引”而不是“使用索引”。 CREATE TABLE `pre_count` ( `count_id`
我有一个包含大量记录的数据库,当我使用以下 SQL 加载页面时,速度非常慢。 SELECT goal.title, max(updates.date_updated) as update_sort F
我想知道 Using index condition 和 Using where 之间的区别;使用索引。我认为这两种方法都使用索引来获取第一个结果记录集,并使用 WHERE 条件进行过滤。 Q1。有什
I am using TypeScript 5.2 version, I have following setup:我使用的是TypeScript 5.2版本,我有以下设置: { "
I am using TypeScript 5.2 version, I have following setup:我使用的是TypeScript 5.2版本,我有以下设置: { "
I am using TypeScript 5.2 version, I have following setup:我使用的是TypeScript 5.2版本,我有以下设置: { "
mysql Ver 14.14 Distrib 5.1.58,用于使用 readline 5.1 的 redhat-linux-gnu (x86_64) 我正在接手一个旧项目。我被要求加快速度。我通过
在过去 10 多年左右的时间里,我一直打开数据库 (mysql) 的连接并保持打开状态,直到应用程序关闭。所有查询都在连接上执行。 现在,当我在 Servicestack 网页上看到示例时,我总是看到
我使用 MySQL 为我的站点构建了一个自定义论坛。列表页面本质上是一个包含以下列的表格:主题、上次更新和# Replies。 数据库表有以下列: id name body date topic_id
在mysql中解释的额外字段中你可以得到: 使用索引 使用where;使用索引 两者有什么区别? 为了更好地解释我的问题,我将使用下表: CREATE TABLE `test` ( `id` bi
我经常看到人们在其Haxe代码中使用关键字using。它似乎在import语句之后。 例如,我发现这是一个代码片段: import haxe.macro.Context; import haxe.ma
这个问题在这里已经有了答案: "reduce" or "apply" using logical functions in Clojure (2 个答案) 关闭 8 年前。 “and”似乎是一个宏,
这个问题在这里已经有了答案: "reduce" or "apply" using logical functions in Clojure (2 个答案) 关闭 8 年前。 “and”似乎是一个宏,
我正在考虑在我的应用程序中使用注册表模式来存储指向某些应用程序窗口和 Pane 的弱指针。应用程序的一般结构如下所示。 该应用程序有一个 MainFrame 顶层窗口,其中有几个子 Pane 。可以有
奇怪的是:。似乎a是b或多或少被定义为id(A)==id(B)。用这种方式制造错误很容易:。有些名字出人意料地出现在Else块中。解决方法很简单,我们应该使用ext==‘.mp3’,但是如果ext表面
我遇到了一个我似乎无法解决的 MySQL 问题。为了能够快速执行用于报告目的的 GROUP BY 查询,我已经将几个表非规范化为以下内容(该表由其他表上的触发器维护,我已经同意了与此): DROP T
我是一名优秀的程序员,十分优秀!