能用来修饰类的有哪些
A. public
B. 默认
C. default
D. private
E. protected
能用来修饰interface的有哪些
A. public
B. 默认
C. default
D. private
E. protected
不能用来修饰interface的有哪些
A. public
B. 默认
C. default
D. private
E. protected
有以下代码String s=new String(“hello”);String t =new String(“hello”);char c [ ] ={‘h’,’e’,’l’,’l’,’o’};下列哪些表达式返回true ?
A. s.equals(t);
B. t.equals(c);
C. s==t ;
D. t.equals (new String(“hello”));
E. t== c;