Java随机coords错误?

时间:2011-03-20 20:47:37

标签: java compilation

我似乎无法理解我得到的这个错误。我为随机数做了一个单独的类,导入它并发起它,但它说我不能用它?

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 = 

1 个答案:

答案 0 :(得分:0)

您的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);
    }
}