gpt4 book ai didi

C++指针类

转载 作者:行者123 更新时间:2023-11-28 01:08:52 25 4
gpt4 key购买 nike

如果我有类 CAnalyzer,我想从这个类创建一个指向新类名 CManager 的指针。我该怎么做?注意:我需要在 CAnalyzer 的 init func 中创建指针。谢谢

最佳答案

class CManager;  // Forward declaration (may not be needed)

class CAnalyzer
{
// Other stuff goes here

private:
CManager *p_manager;
};

我不明白你所说的“我需要在 CAnalyzer 的 init func 中创建指针”是什么意思。

关于C++指针类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4617878/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com