私はこのメソッドを2回だけ実行しようとしています。私はそのようなパラメータとしてカウンタを渡そうとしましたが、動作しているようには見えません。2回の反復の後にこの再帰メソッドを停止する方法
@Override
public IaaSService createCloudAndReturnWithIt(int counter, IaasService iaas) {
int counter = 0;
counter+=2;
try {
iaas = CloudLoader.loadNodes("C:\\Users\\Tom\\git\\dissect-cf-examples\\PM.xml");
}
catch (IOException | SAXException | ParserConfigurationException e) {
e.printStackTrace();
}
return createCloudAndReturnWithIt();
}
希望の値に達するまで、カウンタを渡してインクリメントする - 2回だけすると、realylが再帰パターンに適合しないように見える –
カウンタを渡してもうまくいきません。 –
@SwitchCase試みました – Alexander