首页题目详情

细双点划线可用来表示()。

多选题
2023-10-07 11:40:29
079
 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);   }}
下面的代码执行结果是什么? class Aclass{    void go(){     System.out.println("Aclass");   }   }   public class Bclass extends Aclass{    void go(){     System.out.println("Bclass");    }   public static void main(String args[]){    Aclass a=new Aclass();    Aclass a1=new Bclass();     a.go();     a1.go();   }}
下列程序编译运行后输出什么?public class Arrays {  public static void main(String[] args) {    int[] a1 = { 1, 2, 3, 4, 5 };    int[] a2;    a2 = a1;    for(int i = 0; i < a2.length; i++)      a2[i]++;    for(int i = 0; i < a1.length; i++)      prt("a1[" + i + "] = " + a1[i]);  }  static void prt(String s) {    System.out.println(s);  }} 
绘图铅笔铅芯的软硬用字母“B”和“H”表示。B前的数值越大,表示铅芯()
已知A点距H、V、W面的距离分别为20、20、20;B点在A点上方5,右方10,后方10,因此可知B的坐标为( )。