试题详情
- 单项选择题 Given classes defined in two different files: 1.package util; 2.public class BitUtils{ 3.private static void process(byte[]b){} 4.} 1.package app; 2.public class SomeApp{ 3.public static void main(String[]args){ 4.byte[]bytes=newbyte[256]; 5.//insert code here 6.} 7.} What is required at line 5 in class SomeApp to use the process method of BitUtils?()
A、process(bytes);
B、BitUtils.process(bytes);
C、app.BitUtils.process(bytes);
D、util.BitUtils.process(bytes);
E、importutil.BitUtils.*;process(bytes);
F、SomeApp cannot use the process method in BitUtils.
- F
关注下方微信公众号,在线模考后查看
热门试题
- Given the&ensp
- 现有: class&ens
- What is th
- int i =&e
- 下面有关struts1和struts2的
- A programmer
- 求s=1+3+5+7+...直到s>20
- 以下哪项不是Swing容器?()Q
- 下列关于构造函数的描述正确的是()。
- public static&
- Java有哪些算术运算符、关系运算符、逻
- 中间容器,原子组件,菜单栏,工具栏等都直
- 对于移动平均算法,是计算某变量之前n个数
- Which two
- 有1、2、3、4四个数字,能组成多少个互
- 已知: 那么第5行可以填写?()
- 编写一个Java应用程序,从键盘读取用户
- 已知: 那么结果为?()
- Given an
- 编写一个JavaApplication,