假设我有一个看起来像这样的 c++ 非托管类
#include "note.h"
class chord
{
private:
note* _root; // or, as in my real class: std::shared_ptr<note> _root;
// _third, _fifth, _seventh, etc
public:
someClass(const note n1, const note n2, const note n3); // constructor takes some of these notes to make a chord
std::shared_ptr<note> root() const; // returns ptr to root of the chord
std::string name() const; // returns the name of this chord
}
现在,我知道我需要将这两个类都包装到 cli 中的托管类中。但问题是,如何将本地类的私有指针传递给构造函数?
就目前而言,Note* _src 在 noteWrapper 中是私有的。但是原生的 Chord() 需要原生的 Note 对象。所以 chordWrapper 无法访问 noteWrappers _src,以传递给构造函数。在不将内部成员暴露给 .net 的情况下,我怎样才能做到这一点?
编辑**
// assume noteWrapper is already defined, with Note* _src as private
public ref class chordWrapper
{
private:
Chord* _src;
public:
chordWrapper(noteWrapper^ n1, noteWrapper^ n2, noteWrapper^ n3)
{
_src = new Chord(*n1->_src, *n2->_src, *n2->_src); // _src is inaccessible
}
}
以上是不可能的,因为 chordWrapper 无权访问该内部成员。由于friend也不支持,我不知道我还能做些什么来隐藏.net的内部成员,并将它们暴露给cli类。
处理此问题的适当方法是什么?