Why can#39;t a forward declaration be used for a std::vector?(为什么不能将前向声明用于 std::vector?)
问题描述
如果我像这样创建一个类:
If I create a class like so:
// B.h
#ifndef _B_H_
#define _B_H_
class B
{
private:
int x;
int y;
};
#endif // _B_H_
并像这样使用它:
// main.cpp
#include <iostream>
#include <vector>
class B; // Forward declaration.
class A
{
public:
A() {
std::cout << v.size() << std::endl;
}
private:
std::vector<B> v;
};
int main()
{
A a;
}
编译main.cpp
时编译器失败.现在我知道的解决方案是 #include "B.h"
,但我很好奇它为什么会失败.g++
或 cl
的错误信息在这件事上都没有什么启发.
The compiler fails when compiling main.cpp
. Now the solution I know is to #include "B.h"
, but I'm curious as to why it fails. Neither g++
or cl
's error messages were very enlightening in this matter.
推荐答案
编译器需要知道B"有多大,才能生成合适的布局信息.相反,如果您说的是 std::vector
,那么编译器就不需要知道 B 有多大,因为它知道一个指针有多大.
The compiler needs to know how big "B" is before it can generate the appropriate layout information. If instead, you said std::vector<B*>
, then the compiler wouldn't need to know how big B is because it knows how big a pointer is.
这篇关于为什么不能将前向声明用于 std::vector?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:为什么不能将前向声明用于 std::vector?
基础教程推荐
- 使用从字符串中提取的参数调用函数 2022-01-01
- 从 std::cin 读取密码 2021-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01