题目内容

阅读程序题(给出下列【代码】注释标注的代码的输出结果)interface Com {int add(int a,int b);public static int get(int n){ //JDK8之后允许写static方法。用接口名直接调用return n;}public default int see(int n){ //JDK8之后允许写default方法return n;}public default int look(int n){// JDK8之后允许写default方法return n;}}class A implements Com{//A类自动有default方法,允许重写.但没有接口的static方法public int add(int a,int b) {return a+b;}public int see(int n){ //重写default方法(去掉default关键字)return n+1;}}public class E {public static void main(String args[]) {A a = new A();int m = a.add(12,6);int n =Com.get(12);int t = a.see(6);int q = a.look(6);System.out.printf("%d:%d:%d:%d",m,n,t,q); //【代码】}}

查看答案
更多问题

来访者在心理咨询过程中,以公开或者隐蔽的方式( )咨询师的分析,拖延、对抗咨询师的要求,从而影响咨询的进展,甚至使咨询难以进行的一种现象。

A. 肯定
B. 否定
C. 打断

表现来访者拒绝回答咨询师提出的问题,或长时间的停顿是( )。

A. 谈论小事
B. 心理外归因
C. 沉默

最轻微的也是最不易发现的阻抗是( )。

A. 沉默
B. 转移话题
C. 谈论小事

阻抗的类型有:讲话程度上的阻抗、( )和( )。其中属于讲话程度上的阻抗有( ),( ),( ) 。

答案查题题库