字符串压缩编码

参考文章:https://www.cnblogs.com/liuzhuqing/p/7480443.html
自己编写的代码:`
package com.company;

public class TestStringToReduce {

    public  static  String StringToReduce(String str){
        StringBuffer result = new StringBuffer();
        char c1 = str.charAt(0);
        int sum = 1;

        for (int i=1;i

}
`关于 static修饰符何时使用:不需要NEW时加static,需要new后再调用不加static。

------还有一个输入的字符串不是按顺序的,想了一个办法:再和全部的比较完之后删除这个字符串(没时间写了)
如果有人写出来了,跟我讲一下哈。

你可能感兴趣的:(笔记)