簡體   English   中英

類的boost :: shared_ptr作為struct成員

[英]boost::shared_ptr of a class as a struct member

我有以下文件。

啊:

#ifndef __A__
#define __A__

#include <boost/shared_ptr.hpp>
#include <boost/enable_shared_from_this.hpp>

class A: public boost::enable_shared_from_this<A>{

public:
 void somefunction();

};


#endif

a.cpp:

#include "a.h"
#include "b.h"

void A::somefunction()
{
    Node new_node;
    new_node.id_ = 1;
    new_node.ptr = shared_from_this();
    C* c = C::GetInstance();
    c->addNode(new_node);
}

bh:

#ifndef __B__
#define __B__

#include "a.h"
#include <vector>

typedef boost::shared_ptr<A> a_ptr;

struct Node{
    size_t id_;
    a_ptr ptr;
};

class C {

public:

    static C *GetInstance(){
        if(m_pInstance == nullptr){
            m_pInstance = new C();
            }
        return m_pInstance;
    }

    void addNode(Node& node);

    void show();
private:

    static C* m_pInstance;
    std::vector<Node> nodes_;
};


#endif

b.cpp:

#include "b.h"
#include <iostream>

C* C::m_pInstance = nullptr;

void C::addNode(Node& node){

    nodes_.push_back(node);

}

void C::show(){

    for(size_t i=0; i< nodes_.size(); i++){
        if(nodes_[i].ptr != nullptr) 
            std::cout << nodes_[i].id_ << " " << "pointer not null" << std::endl;
    }

}

main.cpp:

#include "a.h"
#include "b.h"

int main(){

    A a_tmp;
    a_tmp.somefunction();
    C* c_tmp = C::GetInstance();
    c_tmp->show();

    return 0;
}

我想要做的是使用一個結構來存儲A類實例的指針。 但是我無法解決這些文件之間的關系。 有人可以給我一些想法嗎?

更新:

問題是,當我編譯這些文件時。 我有

In b.h, error: ‘A’ was not declared in this scope typedef boost::shared_ptr<A> a_ptr;

更新:

terminate called after throwing an instance of 'boost::exception_detail::clone_impl<boost::exception_detail::error_info_injector<boost::bad_weak_ptr> >'
A a_tmp;
a_tmp.somefunction();

這是行不通的。 由於A::someFunction調用shared_from_this ,必須存在至少一個shared_ptr任何A在其上調用對象someFunction 更改為:

boost::shared_ptr<A> a_tmp(boost::make_shared<A>());
a_tmp->someFunction();

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM