So deklarieren Sie eine Variable bei der Verwendung von Loops Java

String str;
while (condition) {
    str = calculateStr();
    .....
}
Yama Samir