我正在使用 EJML 并且我想使用LinearSolver_B64_to_D64
具有构造函数的类:LinearSolver_B64_to_D64(LinearSolver<BlockMatrix64F> alg)
带有接口LinearSolver<BlockMatrix64F>
并且该类已经实现了LinearSolver
.
我所知道的: 通常,您创建一个接口,而不是在特定类中实现该接口。我阅读了将接口作为参数的函数(在特定类中),因为这样你的函数就不需要知道关于类的一些信息。
我的问题:我不知道如何初始化类LinearSolver_B64_to_D64
,因为我不知道如何将接口作为参数传递。
更新: 我尝试了以下代码:
public class UseMatrixInterface{
public UseMatrixInterface(){
}
public void do1(){
DenseMatrix64F a = new DenseMatrix64F(3,3);
LinearSolver_B64_to_D64 ls = new LinearSolver_B64_to_D64(null);
//it throws a nullpointer exeption. I assume, it is because i used null
//instead of the requiered parameter.
ls.invert(a);
a.print();
}
public void do2(){
LinearSolver<BlockMatrix64F> lsD;
LinearSolver_B64_to_D64 ls = new LinearSolver_B64_to_D64(lsD);
//not working, because lsD cannot be initialised;
}
}