3.
|
What is the difference between the IDL types char and wchar ? To what Java type do they each map? Please select the best answer.
|
|
A.
|
There is no difference, they both map to a Java char .
|
|
B.
|
Char is a byte and so maps to a Java byte. wchar is a Unicode char and so maps to a Java char .
|
|
C.
|
Char is a byte, whereas wchar is a Unicode char, but they both map to a Java char .
|
|
D.
|
Char is a character data type , whereas wchar is a wrapped char .
|