为了记录,以下编译和工作:
class ForeverAlone{private: int m_frIEnds; HANDLE m_handle;public: ForeverAlone() { m_handle = CreateThread(NulL,&ForeverAlone::SadThread,reinterpret_cast<voID*>(this),NulL); } ~ForeverAlone() { if (m_handle != NulL) CloseHandle(m_handle); }protected: static unsigned long WINAPI SadThread(voID* param) { ForeverAlone* thisObject = reinterpret_cast<ForeverAlone*>(param); // is there any way for me to access: thisObject->m_frIEnds; }};
原始问题:我有一个静态保护线程方法,我将一个对象传递给它.我可以以某种方式让班级朋友本身,以便我可以访问其私人会员?
解决方法 所有类方法(静态或非静态)都是类的“朋友”. FrIEnd用于允许外部函数和类访问类.班级总是自己的“朋友”. 总结以上是内存溢出为你收集整理的c – 自己做一个班级朋友全部内容,希望文章能够帮你解决c – 自己做一个班级朋友所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)