0

我有两节课。一个类有一个变量“Image plane = null;” 在这个类(Class1)中,我调用了一个函数 move.lookright(),它在另一个名为 move.java 的类文件上执行一个函数,我的问题是我需要将一些变量导入到这个类中,以便我可以使用它们并制作调用函数时图像向右移动。

void lookRight() {
    if(plane.getRotation() < 0 ){       
        if(plane.getRotation()>-270 ){
            plane.rotate(-0.2f * delta);
        }
        if(plane.getRotation()<1){
            plane.rotate(0.2f * delta);
        }
    }
}

这个类需要变量 delta 和 plane。

任何帮助表示赞赏。是的,我多次用谷歌搜索这个答案,但找不到答案。

谢谢,凯尔

4

1 回答 1

4

将方法签名更改为

void lookRight(DataTypeOfPlane plane, double delta)
// replace DataTypeOfPlane with the actual data type of the variable plane ;)

并在调用方法时传递参数。

于 2012-11-29T23:07:10.990 回答