我想知道为什么shared_ptr
没有隐式构造函数。这里没有提到它的事实:为此获得 boost::shared_ptr
(我找到了原因,但认为无论如何发布这将是一个有趣的问题。)
#include <boost/shared_ptr.hpp>
#include <iostream>
using namespace boost;
using namespace std;
void fun(shared_ptr<int> ptr) {
cout << *ptr << endl;
}
int main() {
int foo = 5;
fun(&foo);
return 0;
}
/* shared_ptr_test.cpp: In function `int main()':
* shared_ptr_test.cpp:13: conversion from `int*' to non-scalar type `
* boost::shared_ptr<int>' requested */