创建向量

发布于 2024-10-15 23:43:48 字数 200 浏览 1 评论 0原文

我基本上需要创建一个 MyClass 对象的列表。我认为最好的方法是编写 vector; myClassList; 但是,在编译时出现以下错误

error C2065: 'MyClass' : undeclared identifier

为什么会这样? c++

谢谢 托马斯

I need to basically create a list of MyClass objects. I thought the best way of doing this would be to write vector<MyClass> myClassList; however when compiling I am presented with the following error

error C2065: 'MyClass' : undeclared identifier

Why is this so?
c++

Thanks
Thomas

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

懒猫 2024-10-22 23:43:48

我基本上需要创建一个 myClass 对象列表

error C2065: 'MyClass' : undeclared identifier

那么,是哪个? myClass 还是 MyClass

无论如何,正如它所说,此错误消息意味着 MyClass 尚未声明。您需要在使用类之前定义它。您要么没有定义它,要么忘记包含正确的标头,要么犯了一些类似的错误。

I need to basically create a list of myClass objects

error C2065: 'MyClass' : undeclared identifier

Well, which is it? myClass or MyClass?

In any case, this error message means, as it says, that MyClass has not yet been declared. You need to define your class before you use it. You either haven't defined it or you've forgotten to include the right headers, or you have made some similar error.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文