如何导入 AWT?
我正在自学 Java,而我正在看的这本书刚刚开始解释 AWT。
这是我的源代码:
java.awt.*
class obj
{
public static void main (String[]arg)
{
Point blank;
blank = new Point (3,4) ;
int x = blank.x ;
System.out.prinln (x) ;
}
}
这是我在尝试编译它时遇到的错误:
obj.java:1: 'class' or 'interface' expected
java.awt.*
^
1 error
我做错了什么? / 这里出了什么问题?
Im teaching myself java and the book i'm looking at just got around to explaining AWT.
here is my source code:
java.awt.*
class obj
{
public static void main (String[]arg)
{
Point blank;
blank = new Point (3,4) ;
int x = blank.x ;
System.out.prinln (x) ;
}
}
here is the error i get while trying to compile it:
obj.java:1: 'class' or 'interface' expected
java.awt.*
^
1 error
What did i do wrong? / whats going wrong here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您一开始就缺少
import
:You're missing
import
in the beginning:您需要在顶部使用
import
语句,例如:您会发现此 Sun 教程很有用:
使用包成员
You need to use a
import
statement at the top like:You'll find this Sun tutorial useful:
Using Package Members
不要专注于你正在学习“awt”这一事实。首先记住您的 Java 基础知识,然后运用这些知识来解决您的问题。
“awt”包与任何其他包没有什么不同,您需要一个“import”语句。
查看书籍或论坛中的任何其他示例,了解它们是如何编码的。
Don't concentrate on the fact that you are learning "awt". Remember your Java basics first and apply that knowledge to solve your problem.
the "awt" package is no different then any other package, you need an "import" statement.
Look at any other example in the book or forums to see how they are coded.