シナリオは次のとおりです。1 つのクラスでランダム データを生成し、それを同じクラスのメソッドの引数として使用します。別のクラスでまったく同じ値を使用するにはどうすればよいですか?
これが私のクラスの簡略版です:
public class A {
@Test
public void aMethod() {
RandomStringUUID ruuid = new RandomStringUUID();
}
}
それで:
public class B {
@Test
public void bMethod() {
// Want to use ruuid , without instantiating RandomStringUUID
// as i dont want new values, i want the one from class A
}
}