我试图更熟悉使用JavaDocs.我正在查看String函数,我认为String非常有趣,它实际上只是一个私有引用变量中保存的字符数组.
当我查看String的源代码时,它显示了一个构造函数,如下所示:
String(int offset, int count, char value[]) {
this.value = value;
this.offset = offset;
this.count = count;
}
Run Code Online (Sandbox Code Playgroud)
然后我去查看String JavaDoc,它没有显示具有该类型签名的构造函数.是什么给出的?