We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
在小节 1.1.5. main方法简单解读
1.1.5. main方法简单解读
descriptor: ([Ljava/lang/String;)V : 方法描述符信息, 括号里面是参数类型, L打头代表数组; 括号后面的V表示没有返回值(类似于void)。
L打头应该代表为非基本类型(Object), [ 代表数组。
具体的JVM数组描述符,引自Stackoverflow:
JVM array descriptors. [Z = boolean [B = byte [S = short [I = int [J = long [F = float [D = double [C = char [L = any non-primitives(Object)
JVM array descriptors.
[Z = boolean [B = byte [S = short [I = int [J = long [F = float [D = double [C = char [L = any non-primitives(Object)
The text was updated successfully, but these errors were encountered:
Sorry, something went wrong.
No branches or pull requests
在小节
1.1.5. main方法简单解读
L打头应该代表为非基本类型(Object), [ 代表数组。
具体的JVM数组描述符,引自Stackoverflow:
The text was updated successfully, but these errors were encountered: