致命错误:在 (....PATH) 中找不到类名称?
如果我收到以下错误,可能是什么问题。
当我扩展一个类时,我得到了这个错误
示例:
类 ModuleUser 扩展 抽象模块
致命错误:在 (....PATH) 中未找到 AbstractModule 类?
我已经做了大部分的可能性...但我无法解决问题。
任何帮助将不胜感激,
感谢提前费
罗
What may be the problem if i get the following error.
while i am extending a class i got this error
example:
class ModuleUser extends
AbstractModule
Fatal error: Class AbstractModule not found in (....PATH) ?
I have done most of the possibilities... But i can't resolve the problem.
any help will be thankful
thanks n advance
Fero
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在定义 ModuleUser 之前,导入包含 AbstractModule 定义的文件。
如果两个类位于同一个文件中,请确保在定义 AbstractModule 之后定义 ModuleUser 类。
Prior to your definition of ModuleUser, import the file that contains the definition for AbstractModule.
If both classes are in the same file, then make sure you define the class ModuleUser after you define AbstractModule.