gpt4 book ai didi

android - C++:当我包含 header 时,为什么会出现“未在此范围内声明”错误?

转载 作者:行者123 更新时间:2023-11-28 06:03:21 25 4
gpt4 key购买 nike

在我的代码中,我使用了类 CameraHeapMemory,它由 this header 定义第 491 行如下:

 class CameraHeapMemory : public RefBase {
public:
CameraHeapMemory(int fd, size_t buf_size, uint_t num_buffers = 1) :
mBufSize(buf_size),
mNumBufs(num_buffers)

我使用 include: 将该 header 包含在我的源代码中:

 #include "CameraHardwareInterface.h"

my code然后使用如下行:

 sp<CameraHeapMemory> mem(static_cast<CameraHeapMemory *>(data->handle));

但是当我编译时,我得到:

  error: 'CameraHeapMemory' was not declared in this scope"

谁能看出原因?

最佳答案

“CameraHeapMemory”似乎是“CameraHardwareInterface”中定义的私有(private)类。在“CameraHardwareInterface”之外无法访问它。

关于android - C++:当我包含 header 时,为什么会出现“未在此范围内声明”错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32855011/

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