请问,以下哪个是正确的Java注释形式? ( )
(A)\\ This is a comment.
(B)/*This is a comment.**/
(C)/**This is a comment.*/
(D)\*This is a comment.*\
参考答案
继续答题:下一题
更多java基础知识试题
- 1以下代码输出结果为:class Main { public static void main(String args[]) { System.out.println(fun()); } int fun() { return 20; }}
- 2以下代码输出结果为:public class Main { public static void main(String args[]) { String x = null; giveMeAString(x); System.out.println(x); } static void giveMeAString(String y) { y = "RUNOOB"; } }
- 3下列类定义中哪个是合法的抽象类定义( )
- 4编写AWT图形用户程序时,一定要用import的语句是( )
- 5void blur(char[] z, String st){ if(z.length < st.length()) return; for (int i = 0; i < st.length(); i++) { z[i] = st.charAt(i); }}