作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
public class GPSping {
private double pingLat;
private double pingLon;
private int pingTime;
public GPSping(double Lat, double Lon, int Time)
{
pingLat = Lat;
pingLon = Lon;
pingTime = Time
}
public int timeTo(GPSping anotherPing)
使用上面这个确切的方法签名 (timeTo) 如何创建辅助 GPSping?
我的目标是创建一种方法来计算两次 ping 之间的时间。
最佳答案
您只需调用 getPingTime 方法即可返回另一个对象的 pingTime。这意味着您需要在 GPSping 对象中使用 getPingTime 方法。
public int getPingTime(){
return pingTime;
}
然后你的 timeTo 方法看起来像这样
public int timeTo(GPSping anotherPing){
return getPingTime()-anotherPing.getPingTime();
}
关于java - 如何在 Java 的方法中使用构造函数参数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57948532/
我是一名优秀的程序员,十分优秀!