使用另一个类的对象创建数组 (Java)

发布于 2024-12-14 18:38:41 字数 472 浏览 0 评论 0原文

我创建了一个类Patientjournal,其中包含有关医院中各种患者的大量信息,以及检索这些信息的方法。

我现在创建了另一个名为 Section 的类。在本课程中,我希望创建一个 Patientjournal 对象数组。我尝试这样做如下:

private Patientjournal[] patientjournals;

但是,这会产生错误消息

“Patientjournal 无法解析为类型”。

为什么我会收到此消息?我不明白这一点,因为在实际的类Patientjournal中,我已经成功地能够使用相同的过程创建一个包含来自另一个另一个类的对象的数组,并且这个没有困难的时间。

如果有人知道可能导致此问题的原因,我将不胜感激任何帮助!

I have created a class Patientjournal which contains a lot of information about various patients in a hospital, as well as methods for retrieving this information.

I have now created another class named Section. In this class I wish to create an array of Patientjournal-objects. I have tried to to this as follows:

private Patientjournal[] patientjournals;

However, this yields the error message

"Patientjournal cannot be resolved to a type".

Why am I getting this message? I don't understand this, because in the actual class Patientjournal, I have successfully been able to create an array with objects from yet another class using the same procedure, and this time without difficulties.

If anyone knows what may cause this I will greatly appreciate any help!

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

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

发布评论

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

评论(1

一杯敬自由 2024-12-21 18:38:48

我们可以使用更多信息,但这听起来像是编译器问题。具体来说,我假设您没有必要的 import 语句; 导入 ext.site.Patientjournal 或其他内容。

We could use more information, but it sounds like a compiler issue. Specifically, I'm assuming you don't have the necessary import statement; import ext.site.Patientjournal or whatever.

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