A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

public static String substring(String orignal,int count){
                if(orignal!=null && !"".equals(orignal))
                {
                        if(count>1&& count<orignal.getBytes().length)
                        {
                                StringBuffer sb=new StringBuffer();
                                char c;
                                for(int i=0;i<count;i++)
                                {
                                        c=orignal.charAt(i);
                                        sb.append(c);
                                        if(qiuhe.ischinese(c))
                                        {
                                                --count;
                                        }
                                }
                                return sb.toString();
                        }
                }
                return orignal;
        }

2 个回复

倒序浏览
qiuhe这个是在什么地方定义的。
回复 使用道具 举报
public static String substring(String orignal,int count)  orignal的值返回给该方法的调用者  谁调用就返回给谁  没人调用的话 该方法都不加载到内存的  更不会被执行了
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马