首页题目详情

板材与板材连接形式中,哪个板材间互相垂直?()

单选题
2023-10-07 11:40:31
081
 A.对接
 B.搭接
 C.角接
 D.加强覆板
参考答案:……
查看答案
 参考答案
科目:船舶制图
学科:船舶与海洋工程
感兴趣题目
同一构件的尺寸,一般只标注一次,规格或尺寸相同的构件可只标注一个。
船舶具有尺度大、外形复杂、安装的设备繁多,所以船体图样具备特殊性。
属于船体舾装结构图的图样有()。
细双点划线可用来表示()。
属于分段划分图的视图的有()。
船体图样的特殊性有哪些?()
船图尺寸注法的一般原则有()。
延伸时,加长量按所选幅面短边的整数倍延()增加。
读程序,写出正确的运行结果。(5分)class A{ class Dog{   private String name;   private int age;   public int step;   Dog(String s,int a) {    name=s;    age=a;    step=0;  }  public void run(Dog fast) {    fast.step++;  }}public static void main (String args[]){  A a=new A();   Dog d=a.new Dog("Tom",3);  d.step=25;   d.run(d);   System.out.println(d.step); } } 
读程序,写出正确的运行结果。public class Example{   String str=new String("good");   char[]ch={'a','b','c'};   public static void main(String args[]){     Example ex=new Example();     ex.change(ex.str,ex.ch);     System.out.print(ex.str+" and ");     System.out.print(ex.ch);   }   public void change(String str,char ch[]){     str="test ok";     ch[0]='g';   } }
读程序,写出正确的运行结果。class Test extends Thread{     public void run(){         System.out.println("1");         yield();         System.out.println("2");         suspend();         System.out.println("3");         resume();         System.out.println("4");     }     public static void main(String []args){         Test t = new Test();         t.start();}}
阅读下列代码,写出运行结果。class Instrument {  public void play() {    System.out.println("Instrument.play()");  }}class Wind  extends  Instrument {  public void play() {    System.out.println("Wind.play()");  }}public class Music {  public static void tune(Instrument  k ) {    k.play();  }  public static void main(String[] args) {    Wind flute = new Wind();    tune(flute);   }}