java文件不包含类_Java错误 – 错误的源文件:文件不包含类x.请删除或确保它出现...

最近开始学习Java考试.

在学习包时,试过这个并收到错误信息.我做的是,

//Creating class A (Within package the package: com.test.helpers)

package com.test.helpers;

public class A {

public void sayHello(){

System.out.println("Hello World");

}

}

//And then the class App utilizing the class A

import com.test.helpers.*;

public class App{

public static void main(String args[]){

A a = new A();

a.sayHello();

}

}

我将这两个文件放在名为“JavaTest”的目录中(在Windows 7上),

并首先使用命令“javac -d.A.java”编译A.java

然后,在尝试编译App.java时,我收到以下错误消息:

App.java:5: error: cannot access A

A a = new A();

^

bad source file: .\A.java

file does not contain class A

Please remove or make sure it appears in the correct subdirectory of the source path.

1 error

但问题似乎有两种解决方法,

>删除源文件A.java

>从’import com.test.helpers.*;’更改import语句至

‘import com.test.helpers.A’在文件’App.java’中.

如果你能解释这里发生的事情,我将非常感激.或者我可能会犯一个愚蠢的人为错误或语法错误.

非常感谢你

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值