📄 particle.java
字号:
/* * Created on Jan 13, 2004 * * Intel research seattle. */package org.placelab.particlefilter;/** * * */public abstract class Particle { private double mostRecent; public Particle() { mostRecent = 0.0; } public Particle(Particle p) { mostRecent = p.mostRecent; } public abstract Particle createClone(); //factory public double getWeight() { return mostRecent; } public void updateWeight(double weight) { mostRecent=weight; } }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -