Java随机坐标错误?

发布于 2024-10-24 18:10:13 字数 401 浏览 0 评论 0原文

我似乎无法理解我遇到的这个错误。我已经为随机数创建了一个单独的类,导入它并启动它,但它说我不能使用它?

Compiling loginserver...
src\com\rs2hd\net\ActionSender.java:745: sendCreateObject(int,int,int,int,int,in
t) in com.rs2hd.net.ActionSender cannot be applied to (int)
                        player.getActionSender().sendCreateObject(randomElement)
;
                                                ^

randomElement = 

I cannot seem to understand this error I'm getting. I've made a seperate class for random numbers, imported it and initiated it, but It say's I cannot use it?

Compiling loginserver...
src\com\rs2hd\net\ActionSender.java:745: sendCreateObject(int,int,int,int,int,in
t) in com.rs2hd.net.ActionSender cannot be applied to (int)
                        player.getActionSender().sendCreateObject(randomElement)
;
                                                ^

randomElement = 

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

彼岸花似海 2024-10-31 18:10:13

您的 sendCreateObject 被声明为采用 6 个整数作为参数。在你的行中,

player.getActionSender().sendCreateObject(randomElement)

你只给它一个

举个例子,下面的代码给出了完全相同的错误消息:

public class Test {

    static void sendCreateObject(int a, int b, int c, int d, int e, int f) {
    }

    public static void main(String[] args) {
        sendCreateObject(1);
    }
}

Your sendCreateObject is declared to take 6 integers as arguments. In your line

player.getActionSender().sendCreateObject(randomElement)

you're only giving it one!

To give you an example, the code below gives the exact same error message:

public class Test {

    static void sendCreateObject(int a, int b, int c, int d, int e, int f) {
    }

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