类自参考
我有以下代码。角度函数需要来自调用它的类的一些信息。最好的方法是什么?
class MyScannedRobotEvent extends robocode.ScannedRobotEvent {
public int angle(robocode.Robot myRobot) {
return (int) Math.toRadians((myRobot.getHeading() + getBearing()) % 360);
}
}
public class MyRobot extends robocode.Robot {
int a = MyScannedRobotEvent.angle(*WHATDOIPUTHERE?*);
}
I have the following code. The angle function needs some information from the class it was called from. What's the best way to do this?
class MyScannedRobotEvent extends robocode.ScannedRobotEvent {
public int angle(robocode.Robot myRobot) {
return (int) Math.toRadians((myRobot.getHeading() + getBearing()) % 360);
}
}
public class MyRobot extends robocode.Robot {
int a = MyScannedRobotEvent.angle(*WHATDOIPUTHERE?*);
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过
这个
。另请参阅:
this
关键字Pass
this
.See also:
this
keyword