鉴于下面的代码,unique_ptr 和 Bar 之间的区别是什么bar ( { new int } );
?foo( { new int } );
#include <memory>
struct Bar {
Bar() = default;
Bar( int* m ) : m_( m ) {};
~Bar() { if ( m_ ) delete m_; }
explicit operator bool() const { return m_; }
private:
int* m_ {};
};
bool bar( Bar && a ) { return bool(a); }
bool foo( std::unique_ptr<int> && a) { return bool(a); }
int main() {
bar( { } ); // ok
bar( Bar{ new int } ); // ok
bar( { new int } ); // ok
foo( { } ); // ok
foo( std::unique_ptr<int>{ new int } ); // ok
foo( { new int } ); // compile error
}
clang 3.5 的编译错误:
+ clang++ -std=c++1y -O3 -W -Wall -Wextra -pedantic -pthread main.cpp
main.cpp:22:5: error: no matching function for call to 'foo'
foo( { new int } ); // compile error
^~~
main.cpp:13:6: note: candidate function not viable: cannot convert initializer list argument to 'std::unique_ptr<int>'
bool foo( std::unique_ptr<int> && a) { return bool(a); }