下列代码段的运行结果为()
public class Test {
public static void main(String[] args) {
int num = 0x20;
System.out.println("current value:" + num);
}
}
A. current value: 20 B. 编译错误
C. current value: 32 D. current value: num

出自:国际开放大学Java语言程序设计