📄 reflectedcalldata.java
字号:
// Copyright (c) Corporation for National Research Initiativespackage org.python.core;class ReflectedCallData { public Object[] args; public int length; public Object self; public int errArg; public ReflectedCallData() { args = Py.EmptyObjects; length = 0; self = null; errArg = -2; } public void setLength(int newLength) { length = newLength; if (newLength <= args.length) return; args = new Object[newLength]; } public Object[] getArgsArray() { if (length == args.length) return args; Object[] newArgs = new Object[length]; System.arraycopy(args, 0, newArgs, 0, length); args = newArgs; return newArgs; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -