开发者

Java using functions in a file

Ok really stupid question, but I have some methods defined in a file called x.java, which is in the default folder, and in the same folder, I have a file called z.java. I want to use the functions defined in x in z. When I try, it tells me the function is undefined. I tried to put import x.java; but开发者_开发问答 it says x.java cannot be resolved. What am I missing here?


Based on your description, I'd bet there's a good chance both of your source files defined classes in the default package (i.e., you don't explicitly define a package for them).

You can't import a class that's in the default package.

Recommend you put your class x in a named package (e.g., foo.bar.x), then you can import it:

import foo.bar.x;


if you have a file called x.java which compiles to x.class, you don't import by doing:

import x.java;

but you do

import x;


I think, if the two classes are in same package then there is no need to import the class as that class can be used without any import and without any error.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜