如何导入 AWT?

发布于 2024-08-25 14:04:24 字数 421 浏览 3 评论 0原文

我正在自学 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

剩一世无双 2024-09-01 14:04:24

您一开始就缺少 import

import java.awt.*;

You're missing import in the beginning:

import java.awt.*;
风和你 2024-09-01 14:04:24

您需要在顶部使用 import 语句,例如:

import java.awt.*;

您会发现此 Sun 教程很有用:使用包成员

You need to use a import statement at the top like:

import java.awt.*;

You'll find this Sun tutorial useful: Using Package Members

北方。的韩爷 2024-09-01 14:04:24

不要专注于你正在学习“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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文