Compile with *.java and a single file
hello,
I can compile without errors when i try "javac *.java"
but when i just compile a single file like "Agents.java", the compiler cannot resolve the interface implemented. Is it normal or sth wrong with my java setting or any other things else?
Thanks so much.
Here is the compilation messages:
D:\>javac *.java
D:\>javac Agents.java
Agents.java:1: cannot resolve symbol
symbol : class AgentInterface
location: class Agents
public class Agents implements AgentInterface {
^
1 error

