int k=1;for (int i = str.length()-1; i >= 0; i--) { if(k%3==0){ str.insert(i, ","); k=1; }else k++; }
嗯,而且你的循环要进行n次,课程的只需要执行n/3次 ,效率打折扣啦~