(C++) 如何将 stl 列表声明为 extern?
我有:
std::list<Particle> particles;
std::list<Particle>::iterator particleit;
在我的 main.cpp 中。我需要在我的一个类文件中将这两个声明为 extern,但是我的编译器给了我一些关于缺少 '>' 的错误当我尝试直接的方法时。我该如何解决这个问题?
I have:
std::list<Particle> particles;
std::list<Particle>::iterator particleit;
in my main.cpp. I need to declare both of these as extern in one of my class files, but my compiler gives me some error about a missing '>' when I try the straightforward way. How would I go about fixing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果这不起作用,那么您还有其他错误。您是否包含了
并且Particle
的定义在声明articles
时可见?If that doesn't work, then you have some other error. Have you included
<list>
and is the definition ofParticle
visible whereparticles
is declared?