我已通过以下方式使用org.apache.commons.math3.analysis.interpolation.LinearInterpolator
和org.apache.commons.math3.analysis.interpolation.SplineInterpolator
:我将SPLINE_INTERPOLATOR
初始化为静态最终
private static final SplineInterpolator SPLINE_INTERPOLATOR = new SplineInterpolator();
让多个进程使用它来插入一些数据x
和y
(SPLINE_INTERPOLATOR.interpolate(x, y)
)。昨天,一位同事问我SplineInterpolator
的这种用法是否合法,即它是否是线程安全的。我用Google搜索答案,但无法找到任何答案。有谁知道SplineInterpolator
是否是线程安全的?
提前致谢了。