哪里可以下载java原生方法源代码?例如,我想知道 的源代码System.arraycopy()
,但我找不到。
问问题
18818 次
2 回答
36
您可以在此处下载 OpenJdk 源代码。
在该文件夹jdk\src\share
中,您可以获取源代码。
jdk\src\share\native
是用 c 和 c++ 编写的 natice 方法。
jdk\src\linux
linux的源码。jdk\src\windows
窗户的来源。jdk\src\solaris
solaris 的来源。jd\src\share
共同来源。
例如: System.arrayCopy();
int 文件hotspot\src\share\vm\oops\objArrayKlass.cpp
第 168 行:
void objArrayKlass::copy_array(arrayOop s, int src_pos, arrayOop d,
int dst_pos, int length, TRAPS) {
assert(s->is_objArray(), "must be obj array");
if (!d->is_objArray()) {
THROW(vmSymbols::java_lang_ArrayStoreException());
}
// Check is all offsets and lengths are non negative
if (src_pos < 0 || dst_pos < 0 || length < 0) {
THROW(vmSymbols::java_lang_ArrayIndexOutOfBoundsException());
}
// Check if the ranges are valid
if ( (((unsigned int) length + (unsigned int) src_pos) > (unsigned int) s->length())
|| (((unsigned int) length + (unsigned int) dst_pos) > (unsigned int) d->length()) ) {
THROW(vmSymbols::java_lang_ArrayIndexOutOfBoundsException());
}
// Special case. Boundary cases must be checked first
// This allows the following call: copy_array(s, s.length(), d.length(), 0).
// This is correct, since the position is supposed to be an 'in between point', i.e., s.length(),
// points to the right of the last element.
if (length==0) {
return;
}
if (UseCompressedOops) {
narrowOop* const src = objArrayOop(s)->obj_at_addr<narrowOop>(src_pos);
narrowOop* const dst = objArrayOop(d)->obj_at_addr<narrowOop>(dst_pos);
do_copy<narrowOop>(s, src, d, dst, length, CHECK);
} else {
oop* const src = objArrayOop(s)->obj_at_addr<oop>(src_pos);
oop* const dst = objArrayOop(d)->obj_at_addr<oop>(dst_pos);
do_copy<oop> (s, src, d, dst, length, CHECK);
}
}
于 2012-09-26T03:29:37.373 回答
3
本机方法并由您使用的虚拟机以不同方式实现。这种方法没有一个实现,实际上不同的代码可以在不同的架构或虚拟机上执行。
于 2012-09-26T03:17:30.007 回答