同一设备如果停电时间很短,则停电操作票、送电操作票可以填写在同一份操作票上。
参考答案:错
对文本段落使用排式时,工具箱中应该激活的是:()
A.文字工具
B.箭头工具
C.旋转工具
D.画线工具
给出下列代码,如何使成员变量m被方法fun()直接访问class Test { private int m; public static void fun( ) {... }}
A.将 private int m 改为protected int m
B.将private int m 改为public int m
C.将private int m改为static int m
D.将private int m改为int m