我想对用户插入的数组进行排序。这部分已经没问题了,我遇到的麻烦是当您单击排序按钮时,它会在 jtextarea 内逐步提供某种方式,每行之间有一些时间间隔。
我的问题出在哪里,我试图在我的 for 循环中放置一个 Thread.sleep ,以便它打印一行然后暂停一点,但它不是在正确的时刻暂停,而是在开始排序并打印之前立刻。
public void bubbleSort(int[] arr) {
int[] array_to_sort = arr;
int[] initial_array = arr;
int count = 1;
String result = "";
String result2 = "";
for (int l = 0; l < initial_array.length; l++)
result2 += arr[l] + " ";
for (int i = array_to_sort.length; i >= 1; i--)
for (int j = 1; j < i; j++)
if (array_to_sort[j - 1] > array_to_sort[j]) {
int aux = array_to_sort[j];
array_to_sort[j] = array_to_sort[j - 1];
array_to_sort[j - 1] = aux;
for (int l = 0; l < array_to_sort.length; l++)
result += array_to_sort[l] + " ";
Interface.jTextArea1.append(result + "\n"); // I'd like to pause after printing this line
result = "";
count++;
}
}
有人可以启发我如何以正确的方式进行此暂停吗?