单选题Given classes defined in two different files:What is required at line 5 in class SomeApp to use the process method of BitUtils?()A
process(bytes);B
BitUtils.process(bytes);C
util.BitUtils.process(bytes);D
SomeApp cannot use methods in BitUtils.E
i
题目内容(请给出正确答案)
单选题
Given classes defined in two different files:What is required at line 5 in class SomeApp to use the process method of BitUtils?()
B
BitUtils.process(bytes);
C
util.BitUtils.process(bytes);
D
SomeApp cannot use methods in BitUtils.
E
import util.BitUtils.*; process(bytes);