在实现工厂类时,我遇到了std::auto_ptr
我无法理解的行为。我把问题简化为下面这个小程序,所以……我们开始吧。
考虑以下单例类:
单例.h
#ifndef SINGLETON_H_
#define SINGLETON_H_
#include<iostream>
#include<memory>
class singleton {
public:
static singleton* get() {
std::cout << "singleton::get()" << std::endl;
if ( !ptr_.get() ) {
std::cout << &ptr_ << std::endl;
ptr_.reset( new singleton );
std::cout << "CREATED" << std::endl;
}
return ptr_.get();
}
~singleton(){
std::cout << "DELETED" << std::endl;
}
private:
singleton() {}
singleton(const singleton&){}
static std::auto_ptr< singleton > ptr_;
//static std::unique_ptr< singleton > ptr_;
};
#endif
单例.cpp
#include<singleton.h>o
std::auto_ptr< singleton > singleton::ptr_(0);
//std::unique_ptr< singleton > singleton::ptr_;
这里使用智能指针来管理资源主要是为了避免程序退出时的泄漏。然后我在以下程序中使用此代码:
啊
#ifndef A_H_
#define A_H_
int foo();
#endif
a.cpp
#include<singleton.h>
namespace {
singleton * dummy( singleton::get() );
}
int foo() {
singleton * pt = singleton::get();
return 0;
}
主文件
#include<a.h>
int main() {
int a = foo();
return 0;
}
现在有趣的部分。我分别编译了三个源:
$ g++ -I./ singleton.cpp -c
$ g++ -I./ a.cpp -c
$ g++ -I./ main.cpp -c
如果我按此顺序明确链接它们:
$ g++ main.o singleton.o a.o
一切都按我的预期工作,我得到以下标准输出:
singleton::get()
0x804a0d4
CREATED
singleton::get()
DELETED
相反,如果我使用此顺序链接源:
$ g++ a.o main.o singleton.o
我得到这个输出:
singleton::get()
0x804a0dc
CREATED
singleton::get()
0x804a0dc
CREATED
DELETED
我尝试了不同的编译器品牌(英特尔和 GNU)和版本,并且这种行为在它们之间是一致的。无论如何,我无法看到行为取决于链接顺序的代码。
此外,如果auto_ptr
被unique_ptr
行为取代,则始终与我期望的正确行为一致。
这让我想到了一个问题:有人知道这里发生了什么吗?