使用另一个类的对象创建数组 (Java)
我创建了一个类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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们可以使用更多信息,但这听起来像是编译器问题。具体来说,我假设您没有必要的
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.