题目内容

n.面试;采访;面谈v.对…进行面试;采访;面谈

查看答案
更多问题

adj.唯一的;独特的;特有的

方法比较试验测定的是侯选方法的

A. 偶然误差
B. 比例误差
C. 恒定误差
D. 总误差
E. 系统误差

测定恒定误差的试验是

A. 重复性试验
B. 回收试验
C. 线性试验
D. 干扰试验
E. 检测能力实验

1、以下代码的运行结果(1)Perform.javaimport java.lang.annotation.*;@Retention(RetentionPolicy.RUNTIME)@Documentedpublic @interface Perform{}(2)Test.javaimport java.lang.annotation.*;import java.lang.reflect.Method;public class Test {@Performpublic void testMethod() {}@Performpublic void test() {}public static void main(String[] args) throws Exception {Method testMethod = Test.class.getDeclaredMethod("testMethod");System.out.println(testMethod);Annotation[] ans = testMethod.getDeclaredAnnotations();if( testMethod != null ) {System.out.println(ans.length);}else {System.out.println("无注解");}}}

A. 程序报错
B. 无注解
C. 2
D. 1

答案查题题库