This part of a method is a collection of statements that are performed when the method is executed.方法的这一部分是执行方法时执行的语句的集合。
A. method header 方法头
B. return type 返回类型
C. method body 方法体
D. method modifier 方法修饰符
查看答案
In the header, the method name is always followed by this: 在头中,方法名后面始终跟有:
A. parentheses 圆括号
B. return type 返回类型
C. data type 数据类型
D. braces 大括号
执行赋值语句i = Integer.parseInt("120")+130; 后,i的值为__________。
设有数组定义:int myScores[ ] = { 20, 60,70 , 80 , 70 , 90 , 60 , 70 , 80};则myScores.length的值为____________。
若有定义String s ="Programing";则s.charAt(5)的值是_________。