java代码(android中的java): public String substring(int start) if (start == 0) return this;
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java代码(android中的java): public String substring(int start) if (start == 0) return this;相关的知识,希望对你有一定的参考价值。
new String(offset + start, count - start, value);
是调用的哪个构造函数?看遍了,没有(int,int,char[])类型的构造函数
public String (char[] data, int offset, int charCount)
Since: API Level 1
Initializes this string to contain the specified characters in the character array. Modifying the character array after creating the string has no effect on the string. 参考技术B 既然是new String()那就肯定是String的构造方法啊
以上是关于java代码(android中的java): public String substring(int start) if (start == 0) return this;的主要内容,如果未能解决你的问题,请参考以下文章