题目内容

压力控制阀的工作原理:利用空气压力和(3字)相互平衡的原理。

查看答案
更多问题

溢流阀和安全阀的功能是当储气罐或气动回路中的压力超过一定时,能自动向外排气,以保持(2字)压力为调定值

请根据符号选择正确的名称。

Java兼容给定是强类型语言,它对变量类型的检查非常严格,同时也提供了一些赋值兼容原则,赋值兼容原则规定()。

A. 在继承树中允许向上赋值,既父类实例可以赋值给同类变量,还可以赋值给其子类的变量
B. 在继承树种不允许向下赋值,既子类实例不允许赋值给父类变量
C. 在继承树种不允许向下赋值,既父类实例不允许赋值给子类变量
D. 在继承树中允许向上赋值,既子类实例可以赋值给同类变量,还可以赋值给其祖先类的变量

考虑以下类:class Parent{String one, two;public Parent (String a, String b){one = a;two = b;}public void print( ){ System.out.println(one); }}public class Child extends Parent {public Child(String a, String b){super(a, b);}public void print( ){System.out.println(one + " to " + two );}public static void main(String[ ] args){Parent p = new Parent("south", "north");Parent t = new Child("east", "west");p.print( );t.print( );}}程序调试结果为()。

A. 在编译时出错
B. southeast
C. south to northeast to west
D. south to northeast
E. southeast to west

答案查题题库